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

Unified Diff: content/zygote/zygote_linux.cc

Issue 216603002: Tell nacl_helper to use non SFI mode in HandleForkRequest (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: 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: content/zygote/zygote_linux.cc
diff --git a/content/zygote/zygote_linux.cc b/content/zygote/zygote_linux.cc
index 2f0bd2033e13c2d32db81d3b8962c4177dc0b942..518b7e4eb347bfdb286d217eaef2630775f4b16b 100644
--- a/content/zygote/zygote_linux.cc
+++ b/content/zygote/zygote_linux.cc
@@ -320,7 +320,7 @@ int Zygote::ForkWithRealPid(const std::string& process_type,
fds.push_back(ipc_channel_fd); // kBrowserFDIndex
fds.push_back(dummy_fd); // kDummyFDIndex
fds.push_back(pipe_fds[0]); // kParentFDIndex
- pid = helper_->Fork(fds);
+ pid = helper_->Fork(process_type, fds);
} else {
pid = fork();
}
« components/nacl/loader/nacl_listener.cc ('K') | « content/public/common/zygote_fork_delegate_linux.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698