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_SRC_BROKER_SERVICES_H__ | 5 #ifndef SANDBOX_SRC_BROKER_SERVICES_H__ |
6 #define SANDBOX_SRC_BROKER_SERVICES_H__ | 6 #define SANDBOX_SRC_BROKER_SERVICES_H__ |
7 | 7 |
8 #include <list> | 8 #include <list> |
9 #include <map> | 9 #include <map> |
10 #include <set> | 10 #include <set> |
11 #include "base/basictypes.h" | 11 #include "base/basictypes.h" |
12 #include "base/win/scoped_handle.h" | 12 #include "base/win/scoped_handle.h" |
13 #include "sandbox/src/crosscall_server.h" | 13 #include "sandbox/win/src/crosscall_server.h" |
14 #include "sandbox/src/job.h" | 14 #include "sandbox/win/src/job.h" |
15 #include "sandbox/src/sandbox.h" | 15 #include "sandbox/win/src/sandbox.h" |
16 #include "sandbox/src/sharedmem_ipc_server.h" | 16 #include "sandbox/win/src/sharedmem_ipc_server.h" |
17 #include "sandbox/src/win2k_threadpool.h" | 17 #include "sandbox/win/src/win2k_threadpool.h" |
18 #include "sandbox/src/win_utils.h" | 18 #include "sandbox/win/src/win_utils.h" |
19 | 19 |
20 namespace { | 20 namespace { |
21 | 21 |
22 struct JobTracker; | 22 struct JobTracker; |
23 struct PeerTracker; | 23 struct PeerTracker; |
24 | 24 |
25 } // namespace | 25 } // namespace |
26 | 26 |
27 namespace sandbox { | 27 namespace sandbox { |
28 | 28 |
(...skipping 75 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
104 // Provides a fast lookup to identify sandboxed processes. | 104 // Provides a fast lookup to identify sandboxed processes. |
105 std::set<DWORD> child_process_ids_; | 105 std::set<DWORD> child_process_ids_; |
106 | 106 |
107 DISALLOW_COPY_AND_ASSIGN(BrokerServicesBase); | 107 DISALLOW_COPY_AND_ASSIGN(BrokerServicesBase); |
108 }; | 108 }; |
109 | 109 |
110 } // namespace sandbox | 110 } // namespace sandbox |
111 | 111 |
112 | 112 |
113 #endif // SANDBOX_SRC_BROKER_SERVICES_H__ | 113 #endif // SANDBOX_SRC_BROKER_SERVICES_H__ |
OLD | NEW |