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

Unified Diff: components/nacl/browser/nacl_host_message_filter.cc

Issue 1127913002: Change kMaxDescriptorsPerMessage back to 7 (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: address comments Created 5 years, 7 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 | ipc/ipc_message_attachment_set.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: components/nacl/browser/nacl_host_message_filter.cc
diff --git a/components/nacl/browser/nacl_host_message_filter.cc b/components/nacl/browser/nacl_host_message_filter.cc
index b55eddcf77da54fa38618426615846b40ac0434e..2090e10263e20709192e88e7a4ce189b21dc0b9b 100644
--- a/components/nacl/browser/nacl_host_message_filter.cc
+++ b/components/nacl/browser/nacl_host_message_filter.cc
@@ -27,8 +27,10 @@ namespace {
// The maximum number of resource file handles NaClProcessMsg_Start message
// can have. Currently IPC::MessageAttachmentSet::kMaxDescriptorsPerMessage
-// is 128 and NaCl sends 5 handles for other purposes, hence 123.
-const size_t kMaxPreOpenResourceFiles = 123;
+// is 7 and NaCl sends 5 handles for other purposes, hence 2.
+// TODO(yusukes): Remove |kMaxPreOpenResourceFiles|. Instead, send an arbitrary
+// number of FDs to the NaCl loader process with separate IPC messages.
+const size_t kMaxPreOpenResourceFiles = 2;
#if defined(OS_POSIX)
static_assert(kMaxPreOpenResourceFiles ==
« no previous file with comments | « no previous file | ipc/ipc_message_attachment_set.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698