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

Unified Diff: components/nacl/loader/nacl_listener.cc

Issue 649603004: Non-SFI NaCl: Batch-open resource files (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: fix win x64 Created 6 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: components/nacl/loader/nacl_listener.cc
diff --git a/components/nacl/loader/nacl_listener.cc b/components/nacl/loader/nacl_listener.cc
index 0733bf8af638e18b60f1aa33d4876dbee92acd54..947aa6f6efa740b946a7ef9f4632c0f856f67bc0 100644
--- a/components/nacl/loader/nacl_listener.cc
+++ b/components/nacl/loader/nacl_listener.cc
@@ -470,6 +470,9 @@ void NaClListener::OnStart(const nacl::NaClStartParams& params) {
nexe_file_info.file_token.hi = params.nexe_token_hi;
args->nexe_desc = NaClDescIoFromFileInfo(nexe_file_info, NACL_ABI_O_RDONLY);
+ // TODO(yusukes): Support pre-opening resource files.
+ CHECK(params.resource_files.empty());
+
int exit_status;
if (!NaClChromeMainStart(nap, args, &exit_status))
NaClExit(1);

Powered by Google App Engine
This is Rietveld 408576698