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

Unified Diff: ppapi/native_client/src/trusted/plugin/plugin.cc

Issue 8786005: Move command line processing out of coordinator (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: '' Created 9 years 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/plugin.cc
===================================================================
--- ppapi/native_client/src/trusted/plugin/plugin.cc (revision 113812)
+++ ppapi/native_client/src/trusted/plugin/plugin.cc (working copy)
@@ -966,6 +966,7 @@
RequestNaClManifest(manifest_url);
}
}
+ pnacl_.Initialize(this);
robertm 2011/12/12 16:23:29 This is sort of pre-existing. why is this not done
sehr (please use chromium) 2011/12/13 00:12:45 I have changed how the coordinator is instantiated
// Export a property to allow us to get the last error description.
AddPropertyGet(GetLastError, "lastError", "s");
@@ -1000,9 +1001,8 @@
PLUGIN_PRINTF(("Plugin::Plugin (this=%p, pp_instance=%"
NACL_PRId32")\n", static_cast<void*>(this), pp_instance));
NaClSrpcModuleInit();
+ callback_factory_.Initialize(this);
nexe_downloader_.Initialize(this);
- pnacl_.Initialize(this);
- callback_factory_.Initialize(this);
}

Powered by Google App Engine
This is Rietveld 408576698