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

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

Issue 2554863002: Cleanup remaining class/struct fwd declarations (Closed)
Patch Set: Style fixes Created 4 years 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
« no previous file with comments | « sandbox/linux/bpf_dsl/bpf_dsl_impl.h ('k') | sandbox/win/src/target_process.h » ('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_WIN_SRC_BROKER_SERVICES_H_ 5 #ifndef SANDBOX_WIN_SRC_BROKER_SERVICES_H_
6 #define SANDBOX_WIN_SRC_BROKER_SERVICES_H_ 6 #define SANDBOX_WIN_SRC_BROKER_SERVICES_H_
7 7
8 #include <list> 8 #include <list>
9 #include <map> 9 #include <map>
10 #include <memory> 10 #include <memory>
(...skipping 11 matching lines...) Expand all
22 #include "sandbox/win/src/win_utils.h" 22 #include "sandbox/win/src/win_utils.h"
23 23
24 namespace { 24 namespace {
25 25
26 struct JobTracker; 26 struct JobTracker;
27 27
28 } // namespace 28 } // namespace
29 29
30 namespace sandbox { 30 namespace sandbox {
31 31
32 class PolicyBase;
33
34 // BrokerServicesBase --------------------------------------------------------- 32 // BrokerServicesBase ---------------------------------------------------------
35 // Broker implementation version 0 33 // Broker implementation version 0
36 // 34 //
37 // This is an implementation of the interface BrokerServices and 35 // This is an implementation of the interface BrokerServices and
38 // of the associated TargetProcess interface. In this implementation 36 // of the associated TargetProcess interface. In this implementation
39 // TargetProcess is a friend of BrokerServices where the later manages a 37 // TargetProcess is a friend of BrokerServices where the later manages a
40 // collection of the former. 38 // collection of the former.
41 class BrokerServicesBase final : public BrokerServices, 39 class BrokerServicesBase final : public BrokerServices,
42 public SingletonBase<BrokerServicesBase> { 40 public SingletonBase<BrokerServicesBase> {
43 public: 41 public:
(...skipping 49 matching lines...) Expand 10 before | Expand all | Expand 10 after
93 // jobs. 91 // jobs.
94 std::set<DWORD> child_process_ids_; 92 std::set<DWORD> child_process_ids_;
95 93
96 DISALLOW_COPY_AND_ASSIGN(BrokerServicesBase); 94 DISALLOW_COPY_AND_ASSIGN(BrokerServicesBase);
97 }; 95 };
98 96
99 } // namespace sandbox 97 } // namespace sandbox
100 98
101 99
102 #endif // SANDBOX_WIN_SRC_BROKER_SERVICES_H_ 100 #endif // SANDBOX_WIN_SRC_BROKER_SERVICES_H_
OLDNEW
« no previous file with comments | « sandbox/linux/bpf_dsl/bpf_dsl_impl.h ('k') | sandbox/win/src/target_process.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698