Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(20)

Unified Diff: src/trusted/reverse_service/reverse_service.h

Issue 15039022: Enable meta-based validation for shared libraries. (Closed) Base URL: svn://svn.chromium.org/native_client/trunk/src/native_client
Patch Set: Created 7 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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;

Powered by Google App Engine
This is Rietveld 408576698