Chromium Code Reviews| Index: src/trusted/reverse_service/reverse_service.h |
| diff --git a/src/trusted/reverse_service/reverse_service.h b/src/trusted/reverse_service/reverse_service.h |
| index 1b11f15dba65e7e273ee99ddb3afd22c944409f9..5c64fd87ea13c98ff699fa1675b80f448558377d 100644 |
| --- a/src/trusted/reverse_service/reverse_service.h |
| +++ b/src/trusted/reverse_service/reverse_service.h |
| @@ -22,6 +22,8 @@ |
| #include "native_client/src/trusted/service_runtime/include/sys/errno.h" |
| #include "native_client/src/trusted/service_runtime/include/sys/nacl_name_service.h" |
| +struct NaClFileInfo; |
| + |
| namespace nacl { |
| // The CreateProcessFunctorInterface allows delivery of results to an |
| @@ -76,7 +78,8 @@ class ReverseInterface : public RefCountBase { |
| // Since shutdown/surfaway is the only admissible error, we use bool |
| // as the return type. |
| virtual bool EnumerateManifestKeys(std::set<nacl::string>* keys) = 0; |
| - virtual bool OpenManifestEntry(nacl::string url_key, int32_t* out_desc) = 0; |
| + virtual bool OpenManifestEntry(nacl::string url_key, |
|
bsy
2013/05/10 23:52:56
isn't this going to cause the chrome-side code to
Nick Bray (chromium)
2013/05/13 20:27:44
Done.
|
| + struct NaClFileInfo* info) = 0; |
| virtual bool CloseManifestEntry(int32_t desc) = 0; |
| virtual void ReportCrash() = 0; |