summaryrefslogtreecommitdiffstats
path: root/components/nacl/browser/nacl_broker_service_win.cc
diff options
context:
space:
mode:
Diffstat (limited to 'components/nacl/browser/nacl_broker_service_win.cc')
-rw-r--r--components/nacl/browser/nacl_broker_service_win.cc3
1 files changed, 1 insertions, 2 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;