diff options
Diffstat (limited to 'components/nacl/browser')
-rw-r--r-- | components/nacl/browser/nacl_broker_service_win.cc | 3 | ||||
-rw-r--r-- | components/nacl/browser/nacl_process_host.cc | 2 |
2 files changed, 2 insertions, 3 deletions
diff --git a/components/nacl/browser/nacl_broker_service_win.cc b/components/nacl/browser/nacl_broker_service_win.cc index af23be1..48b83bf 100644 --- a/components/nacl/browser/nacl_broker_service_win.cc +++ b/components/nacl/browser/nacl_broker_service_win.cc @@ -95,8 +95,7 @@ void NaClBrokerService::OnDebugExceptionHandlerLaunched(int32 pid, NaClBrokerHost* NaClBrokerService::GetBrokerHost() { BrowserChildProcessHostIterator iter(PROCESS_TYPE_NACL_BROKER); while (!iter.Done()) { - NaClBrokerHost* host = static_cast<NaClBrokerHost*>( - iter.GetDelegate()); + NaClBrokerHost* host = static_cast<NaClBrokerHost*>(iter.GetDelegate()); if (!host->IsTerminating()) return host; ++iter; diff --git a/components/nacl/browser/nacl_process_host.cc b/components/nacl/browser/nacl_process_host.cc index 565a0d5..9ffda7c 100644 --- a/components/nacl/browser/nacl_process_host.cc +++ b/components/nacl/browser/nacl_process_host.cc @@ -272,7 +272,7 @@ NaClProcessHost::~NaClProcessHost() { base::StringPrintf("NaCl process exited with status %i (0x%x)", exit_code, exit_code); if (exit_code == 0) { - VLOG(1) << message; + LOG(INFO) << message; } else { LOG(ERROR) << message; } |