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

Side by Side Diff: sandbox/mac/dispatch_source_mach.h

Issue 1099393003: sandbox/mac: Remove basictypes.h include from dispatch_source_mach.h. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 8 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
« no previous file with comments | « sandbox/linux/services/yama.cc ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2014 The Chromium Authors. All rights reserved. 1 // Copyright 2014 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_MAC_DISPATCH_SOURCE_MACH_H_ 5 #ifndef SANDBOX_MAC_DISPATCH_SOURCE_MACH_H_
6 #define SANDBOX_MAC_DISPATCH_SOURCE_MACH_H_ 6 #define SANDBOX_MAC_DISPATCH_SOURCE_MACH_H_
7 7
8 #include <dispatch/dispatch.h> 8 #include <dispatch/dispatch.h>
9 9
10 #include "base/basictypes.h" 10 #include "base/macros.h"
11 #include "sandbox/sandbox_export.h" 11 #include "sandbox/sandbox_export.h"
12 12
13 namespace sandbox { 13 namespace sandbox {
14 14
15 // This class encapsulates a MACH_RECV dispatch source. When this object is 15 // This class encapsulates a MACH_RECV dispatch source. When this object is
16 // destroyed, the source will be cancelled and it will wait for the source 16 // destroyed, the source will be cancelled and it will wait for the source
17 // to stop executing work. The source can run on either a user-supplied queue, 17 // to stop executing work. The source can run on either a user-supplied queue,
18 // or it can create its own for the source. 18 // or it can create its own for the source.
19 class SANDBOX_EXPORT DispatchSourceMach { 19 class SANDBOX_EXPORT DispatchSourceMach {
20 public: 20 public:
(...skipping 31 matching lines...) Expand 10 before | Expand all | Expand 10 after
52 52
53 // Semaphore used to wait on the |source_|'s cancellation in the destructor. 53 // Semaphore used to wait on the |source_|'s cancellation in the destructor.
54 dispatch_semaphore_t source_canceled_; 54 dispatch_semaphore_t source_canceled_;
55 55
56 DISALLOW_COPY_AND_ASSIGN(DispatchSourceMach); 56 DISALLOW_COPY_AND_ASSIGN(DispatchSourceMach);
57 }; 57 };
58 58
59 } // namespace sandbox 59 } // namespace sandbox
60 60
61 #endif // SANDBOX_MAC_DISPATCH_SOURCE_MACH_H_ 61 #endif // SANDBOX_MAC_DISPATCH_SOURCE_MACH_H_
OLDNEW
« no previous file with comments | « sandbox/linux/services/yama.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698