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

Unified Diff: content/common/child_process_host_impl.cc

Issue 1000203008: Fix a typo on Process::OpenWithExtraPrivileges (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 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
« no previous file with comments | « components/nacl/broker/nacl_broker_listener.cc ('k') | content/public/browser/browser_message_filter.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/common/child_process_host_impl.cc
diff --git a/content/common/child_process_host_impl.cc b/content/common/child_process_host_impl.cc
index eabd30e7fd63346cf0b8dbd3ce58bcbb242e82ee..b58475af2468ccae25d5812e3ef95b29ccace4ee 100644
--- a/content/common/child_process_host_impl.cc
+++ b/content/common/child_process_host_impl.cc
@@ -275,7 +275,7 @@ bool ChildProcessHostImpl::OnMessageReceived(const IPC::Message& msg) {
void ChildProcessHostImpl::OnChannelConnected(int32 peer_pid) {
if (!peer_process_.IsValid()) {
- peer_process_ = base::Process::OpenWithExtraPriviles(peer_pid);
+ peer_process_ = base::Process::OpenWithExtraPrivileges(peer_pid);
if (!peer_process_.IsValid())
peer_process_ = delegate_->GetProcess().Duplicate();
DCHECK(peer_process_.IsValid());
« no previous file with comments | « components/nacl/broker/nacl_broker_listener.cc ('k') | content/public/browser/browser_message_filter.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698