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

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

Issue 10800084: Remove non-streaming translation code from pnacl coordinator (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 8 years, 5 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
« no previous file with comments | « no previous file | ppapi/native_client/src/trusted/plugin/pnacl_coordinator.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ppapi/native_client/src/trusted/plugin/pnacl_coordinator.h
diff --git a/ppapi/native_client/src/trusted/plugin/pnacl_coordinator.h b/ppapi/native_client/src/trusted/plugin/pnacl_coordinator.h
index 90b93b79cabd42887ee730803d4d382104b18f01..b5fb3d0627d036a328245b143a7cb594d1ab2a25 100644
--- a/ppapi/native_client/src/trusted/plugin/pnacl_coordinator.h
+++ b/ppapi/native_client/src/trusted/plugin/pnacl_coordinator.h
@@ -152,8 +152,6 @@ class PnaclCoordinator: public CallbackSource<FileStreamData> {
void BitcodeStreamGotData(int32_t pp_error, FileStreamData data);
// Invoked when the pexe download finishes (using streaming translation)
void BitcodeStreamDidFinish(int32_t pp_error);
- // Invoked after we have started pulling down the bitcode file.
- void BitcodeFileDidOpen(int32_t pp_error);
// Invoked when the write descriptor for obj_file_ is created.
void ObjectWriteDidOpen(int32_t pp_error);
// Invoked when the read descriptor for obj_file_ is created.
@@ -214,8 +212,6 @@ class PnaclCoordinator: public CallbackSource<FileStreamData> {
nacl::string pexe_url_;
// Optional cache identity for translation caching.
nacl::string cache_identity_;
- // Borrowed reference which must outlive the thread.
- nacl::scoped_ptr<nacl::DescWrapper> pexe_wrapper_;
// Object file, produced by the translator and consumed by the linker.
nacl::scoped_ptr<LocalTempFile> obj_file_;
// Translated nexe file, produced by the linker and consumed by sel_ldr.
@@ -223,7 +219,6 @@ class PnaclCoordinator: public CallbackSource<FileStreamData> {
// Downloader for streaming translation
nacl::scoped_ptr<FileDownloader> streaming_downloader_;
- bool do_streaming_translation_;
// Used to report information when errors (PPAPI or otherwise) are reported.
ErrorInfo error_info_;
« no previous file with comments | « no previous file | ppapi/native_client/src/trusted/plugin/pnacl_coordinator.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698