| OLD | NEW |
| 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 Loading... |
| 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_ |
| OLD | NEW |