| Index: components/nacl/browser/nacl_broker_host_win.cc
|
| diff --git a/components/nacl/browser/nacl_broker_host_win.cc b/components/nacl/browser/nacl_broker_host_win.cc
|
| index ca54e6759ec1888b31a746cccaabbea455fadff2..f42cb7f139d74ba30c8fda5f898cc384b982b4a4 100644
|
| --- a/components/nacl/browser/nacl_broker_host_win.cc
|
| +++ b/components/nacl/browser/nacl_broker_host_win.cc
|
| @@ -28,8 +28,8 @@ class NaClBrokerSandboxedProcessLauncherDelegate
|
| NaClBrokerSandboxedProcessLauncherDelegate() {}
|
| virtual ~NaClBrokerSandboxedProcessLauncherDelegate() {}
|
|
|
| - virtual void ShouldSandbox(bool* in_sandbox) OVERRIDE {
|
| - *in_sandbox = false;
|
| + virtual bool ShouldSandbox() OVERRIDE {
|
| + return false;
|
| }
|
|
|
| private:
|
| @@ -68,7 +68,6 @@ bool NaClBrokerHost::Init() {
|
| cmd_line->AppendSwitch(switches::kNoErrorDialogs);
|
|
|
| process_->Launch(new NaClBrokerSandboxedProcessLauncherDelegate,
|
| - false,
|
| cmd_line);
|
| return true;
|
| }
|
|
|