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

Side by Side Diff: base/mac/scoped_mach_port.h

Issue 278923002: Use the new ScopedMachVM class and the MACH_LOG family of logging macros (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Rebase onto r269793 Created 6 years, 7 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 | « base/mac/mach_logging.cc ('k') | base/mac/scoped_mach_vm.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 BASE_MAC_SCOPED_MACH_PORT_H_ 5 #ifndef BASE_MAC_SCOPED_MACH_PORT_H_
6 #define BASE_MAC_SCOPED_MACH_PORT_H_ 6 #define BASE_MAC_SCOPED_MACH_PORT_H_
7 7
8 #include <mach/mach.h> 8 #include <mach/mach.h>
9 9
10 #include "base/base_export.h"
10 #include "base/basictypes.h" 11 #include "base/basictypes.h"
11 #include "base/base_export.h"
12 12
13 namespace base { 13 namespace base {
14 namespace mac { 14 namespace mac {
15 15
16 // A class for managing the life of a Mach port, releasing via 16 // A class for managing the life of a Mach port, releasing via
17 // mach_port_deallocate either its send and/or receive rights. 17 // mach_port_deallocate either its send and/or receive rights.
18 class BASE_EXPORT ScopedMachPort { 18 class BASE_EXPORT ScopedMachPort {
19 public: 19 public:
20 // Creates a scoper by taking ownership of the port. 20 // Creates a scoper by taking ownership of the port.
21 explicit ScopedMachPort(mach_port_t port); 21 explicit ScopedMachPort(mach_port_t port);
(...skipping 13 matching lines...) Expand all
35 private: 35 private:
36 mach_port_t port_; 36 mach_port_t port_;
37 37
38 DISALLOW_COPY_AND_ASSIGN(ScopedMachPort); 38 DISALLOW_COPY_AND_ASSIGN(ScopedMachPort);
39 }; 39 };
40 40
41 } // namespace mac 41 } // namespace mac
42 } // namespace base 42 } // namespace base
43 43
44 #endif // BASE_MAC_SCOPED_MACH_PORT_H_ 44 #endif // BASE_MAC_SCOPED_MACH_PORT_H_
OLDNEW
« no previous file with comments | « base/mac/mach_logging.cc ('k') | base/mac/scoped_mach_vm.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698