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

Unified Diff: components/nacl/renderer/nexe_load_manager.h

Issue 222203003: Pepper: Move exit_status to NexeLoadManager. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: More build fixes Created 6 years, 9 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: components/nacl/renderer/nexe_load_manager.h
diff --git a/components/nacl/renderer/nexe_load_manager.h b/components/nacl/renderer/nexe_load_manager.h
index c58a3a372944310d6ad0c5e65020f4cccbedb156..2b3bcf96946b0e93e7ac3a00efcf9e167fa682a5 100644
--- a/components/nacl/renderer/nexe_load_manager.h
+++ b/components/nacl/renderer/nexe_load_manager.h
@@ -84,6 +84,9 @@ class NexeLoadManager {
int64_t ready_time() const { return ready_time_; }
void set_ready_time(int64_t ready_time) { ready_time_ = ready_time; }
+ int32_t exit_status() const { return exit_status_; }
+ void set_exit_status(int32_t exit_status) { exit_status_ = exit_status; }
+
private:
DISALLOW_COPY_AND_ASSIGN(NexeLoadManager);
@@ -105,6 +108,9 @@ class NexeLoadManager {
// Time of a successful nexe load, in microseconds since the epoch.
int64_t ready_time_;
+ // The exit status of the plugin process.
+ int32_t exit_status_;
+
// Non-owning.
content::PepperPluginInstance* plugin_instance_;
« no previous file with comments | « no previous file | components/nacl/renderer/nexe_load_manager.cc » ('j') | components/nacl/renderer/ppb_nacl_private_impl.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698