Chromium Code Reviews| Index: ppapi/nacl_irt/irt_manifest.h |
| diff --git a/ppapi/nacl_irt/irt_manifest.h b/ppapi/nacl_irt/irt_manifest.h |
| new file mode 100644 |
| index 0000000000000000000000000000000000000000..4c3a4af58428b7ca7d2a3cfc4dedd4dad6b81969 |
| --- /dev/null |
| +++ b/ppapi/nacl_irt/irt_manifest.h |
| @@ -0,0 +1,17 @@ |
| +// Copyright 2014 The Chromium Authors. All rights reserved. |
| +// Use of this source code is governed by a BSD-style license that can be |
| +// found in the LICENSE file. |
| + |
| +#ifndef PPAPI_NACL_IRT_IRT_MANIFEST_H_ |
| +#define PPAPI_NACL_IRT_IRT_MANIFEST_H_ |
| + |
| +#include "ppapi/proxy/ppapi_proxy_export.h" |
| + |
| +namespace ppapi { |
| + |
| +// The implementation of irt_open_resource() based on ManifestService. |
|
dmichael (off chromium)
2014/04/25 21:06:58
This ought to document what it does and what the r
hidehiko
2014/04/28 08:44:27
Updated the comment.
As Mark said, the first para
dmichael (off chromium)
2014/04/29 17:24:59
Okay, sorry for the misunderstanding, then.
Perha
hidehiko
2014/04/30 02:26:42
Done.
|
| +PPAPI_PROXY_EXPORT int IrtOpenResource(const char* file, int* fd); |
| + |
| +} // namespace ppapi |
| + |
| +#endif // PPAPI_NACL_IRT_IRT_MANIFEST_H_ |