| OLD | NEW |
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #include "components/nacl/browser/nacl_broker_host_win.h" | 5 #include "components/nacl/browser/nacl_broker_host_win.h" |
| 6 | 6 |
| 7 #include "base/base_switches.h" | 7 #include "base/base_switches.h" |
| 8 #include "base/command_line.h" | 8 #include "base/command_line.h" |
| 9 #include "base/path_service.h" | 9 #include "base/path_service.h" |
| 10 #include "components/nacl/browser/nacl_broker_service_win.h" | 10 #include "components/nacl/browser/nacl_broker_service_win.h" |
| (...skipping 10 matching lines...) Expand all Loading... |
| 21 #include "ipc/ipc_switches.h" | 21 #include "ipc/ipc_switches.h" |
| 22 | 22 |
| 23 namespace { | 23 namespace { |
| 24 // NOTE: changes to this class need to be reviewed by the security team. | 24 // NOTE: changes to this class need to be reviewed by the security team. |
| 25 class NaClBrokerSandboxedProcessLauncherDelegate | 25 class NaClBrokerSandboxedProcessLauncherDelegate |
| 26 : public content::SandboxedProcessLauncherDelegate { | 26 : public content::SandboxedProcessLauncherDelegate { |
| 27 public: | 27 public: |
| 28 NaClBrokerSandboxedProcessLauncherDelegate() {} | 28 NaClBrokerSandboxedProcessLauncherDelegate() {} |
| 29 virtual ~NaClBrokerSandboxedProcessLauncherDelegate() {} | 29 virtual ~NaClBrokerSandboxedProcessLauncherDelegate() {} |
| 30 | 30 |
| 31 virtual bool ShouldSandbox() OVERRIDE { | 31 virtual bool ShouldSandbox() override { |
| 32 return false; | 32 return false; |
| 33 } | 33 } |
| 34 | 34 |
| 35 private: | 35 private: |
| 36 DISALLOW_COPY_AND_ASSIGN(NaClBrokerSandboxedProcessLauncherDelegate); | 36 DISALLOW_COPY_AND_ASSIGN(NaClBrokerSandboxedProcessLauncherDelegate); |
| 37 }; | 37 }; |
| 38 } // namespace | 38 } // namespace |
| 39 | 39 |
| 40 namespace nacl { | 40 namespace nacl { |
| 41 | 41 |
| (...skipping 68 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 110 NaClBrokerService::GetInstance()->OnDebugExceptionHandlerLaunched(pid, | 110 NaClBrokerService::GetInstance()->OnDebugExceptionHandlerLaunched(pid, |
| 111 success); | 111 success); |
| 112 } | 112 } |
| 113 | 113 |
| 114 void NaClBrokerHost::StopBroker() { | 114 void NaClBrokerHost::StopBroker() { |
| 115 is_terminating_ = true; | 115 is_terminating_ = true; |
| 116 process_->Send(new NaClProcessMsg_StopBroker()); | 116 process_->Send(new NaClProcessMsg_StopBroker()); |
| 117 } | 117 } |
| 118 | 118 |
| 119 } // namespace nacl | 119 } // namespace nacl |
| OLD | NEW |