| 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 #ifndef SANDBOX_LINUX_SERVICES_BROKER_PROCESS_H_ | 5 #ifndef SANDBOX_LINUX_SERVICES_BROKER_PROCESS_H_ |
| 6 #define SANDBOX_LINUX_SERVICES_BROKER_PROCESS_H_ | 6 #define SANDBOX_LINUX_SERVICES_BROKER_PROCESS_H_ |
| 7 | 7 |
| 8 #include <string> | 8 #include <string> |
| 9 #include <vector> | 9 #include <vector> |
| 10 | 10 |
| 11 #include "base/basictypes.h" | |
| 12 #include "base/callback_forward.h" | 11 #include "base/callback_forward.h" |
| 12 #include "base/macros.h" |
| 13 #include "base/memory/scoped_ptr.h" | 13 #include "base/memory/scoped_ptr.h" |
| 14 #include "base/pickle.h" | 14 #include "base/pickle.h" |
| 15 #include "base/process/process.h" | 15 #include "base/process/process.h" |
| 16 #include "sandbox/linux/syscall_broker/broker_policy.h" | 16 #include "sandbox/linux/syscall_broker/broker_policy.h" |
| 17 #include "sandbox/sandbox_export.h" | 17 #include "sandbox/sandbox_export.h" |
| 18 | 18 |
| 19 namespace sandbox { | 19 namespace sandbox { |
| 20 | 20 |
| 21 namespace syscall_broker { | 21 namespace syscall_broker { |
| 22 | 22 |
| (...skipping 62 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 85 scoped_ptr<syscall_broker::BrokerClient> broker_client_; | 85 scoped_ptr<syscall_broker::BrokerClient> broker_client_; |
| 86 | 86 |
| 87 DISALLOW_COPY_AND_ASSIGN(BrokerProcess); | 87 DISALLOW_COPY_AND_ASSIGN(BrokerProcess); |
| 88 }; | 88 }; |
| 89 | 89 |
| 90 } // namespace syscall_broker | 90 } // namespace syscall_broker |
| 91 | 91 |
| 92 } // namespace sandbox | 92 } // namespace sandbox |
| 93 | 93 |
| 94 #endif // SANDBOX_LINUX_SERVICES_BROKER_PROCESS_H_ | 94 #endif // SANDBOX_LINUX_SERVICES_BROKER_PROCESS_H_ |
| OLD | NEW |