Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(395)

Side by Side Diff: sandbox/win/src/broker_services.h

Issue 10689170: Move the Windows sandbox to sandbox/win (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Rebase on top of tree (properly this time) Created 8 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « sandbox/win/src/acl.cc ('k') | sandbox/win/src/broker_services.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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__
OLDNEW
« no previous file with comments | « sandbox/win/src/acl.cc ('k') | sandbox/win/src/broker_services.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698