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

Unified Diff: ppapi/native_client/src/trusted/plugin/pnacl_coordinator.h

Issue 8525014: Get all the resources relative to a single base. Currently the same base (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: '' Created 9 years, 1 month 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: ppapi/native_client/src/trusted/plugin/pnacl_coordinator.h
===================================================================
--- ppapi/native_client/src/trusted/plugin/pnacl_coordinator.h (revision 109525)
+++ ppapi/native_client/src/trusted/plugin/pnacl_coordinator.h (working copy)
@@ -90,8 +90,6 @@
void Initialize(Plugin* instance);
void BitcodeToNative(const nacl::string& pexe_url,
- const nacl::string& llc_url,
- const nacl::string& ld_url,
const pp::CompletionCallback& finish_callback);
// Call this to take ownership of the FD of the translated nexe after
@@ -115,9 +113,8 @@
// Wrapper for Plugin ReportLoadError.
void ReportLoadError(const ErrorInfo& error);
-
-
// Accessors for use by helper threads.
+ nacl::string resource_base_url() const { return resource_base_url_; }
Plugin* plugin() const { return plugin_; }
nacl::string llc_url() const { return llc_url_; }
NaClSubprocess* llc_subprocess() const { return llc_subprocess_; }
@@ -153,6 +150,7 @@
pp::CompletionCallbackFactory<PnaclCoordinator> callback_factory_;
// URLs used to lookup downloaded resources.
+ nacl::string resource_base_url_;
nacl::string llc_url_;
nacl::string ld_url_;
« no previous file with comments | « ppapi/native_client/src/trusted/plugin/plugin.cc ('k') | ppapi/native_client/src/trusted/plugin/pnacl_coordinator.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698