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

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

Issue 1852433005: Convert //base to use std::unique_ptr (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebase after r384946 Created 4 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 | « base/mac/mach_port_broker.h ('k') | base/mac/scoped_cftyperef.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_AUTHORIZATIONREF_H_ 5 #ifndef BASE_MAC_SCOPED_AUTHORIZATIONREF_H_
6 #define BASE_MAC_SCOPED_AUTHORIZATIONREF_H_ 6 #define BASE_MAC_SCOPED_AUTHORIZATIONREF_H_
7 7
8 #include <Security/Authorization.h> 8 #include <Security/Authorization.h>
9 9
10 #include "base/compiler_specific.h" 10 #include "base/compiler_specific.h"
(...skipping 43 matching lines...) Expand 10 before | Expand all | Expand 10 after
54 AuthorizationRef get() const { 54 AuthorizationRef get() const {
55 return authorization_; 55 return authorization_;
56 } 56 }
57 57
58 void swap(ScopedAuthorizationRef& that) { 58 void swap(ScopedAuthorizationRef& that) {
59 AuthorizationRef temp = that.authorization_; 59 AuthorizationRef temp = that.authorization_;
60 that.authorization_ = authorization_; 60 that.authorization_ = authorization_;
61 authorization_ = temp; 61 authorization_ = temp;
62 } 62 }
63 63
64 // ScopedAuthorizationRef::release() is like scoped_ptr<>::release. It is 64 // ScopedAuthorizationRef::release() is like std::unique_ptr<>::release. It is
65 // NOT a wrapper for AuthorizationFree(). To force a 65 // NOT a wrapper for AuthorizationFree(). To force a ScopedAuthorizationRef
66 // ScopedAuthorizationRef object to call AuthorizationFree(), use 66 // object to call AuthorizationFree(), use ScopedAuthorizationRef::reset().
67 // ScopedAuthorizationRef::reset().
68 AuthorizationRef release() WARN_UNUSED_RESULT { 67 AuthorizationRef release() WARN_UNUSED_RESULT {
69 AuthorizationRef temp = authorization_; 68 AuthorizationRef temp = authorization_;
70 authorization_ = NULL; 69 authorization_ = NULL;
71 return temp; 70 return temp;
72 } 71 }
73 72
74 private: 73 private:
75 AuthorizationRef authorization_; 74 AuthorizationRef authorization_;
76 75
77 DISALLOW_COPY_AND_ASSIGN(ScopedAuthorizationRef); 76 DISALLOW_COPY_AND_ASSIGN(ScopedAuthorizationRef);
78 }; 77 };
79 78
80 } // namespace mac 79 } // namespace mac
81 } // namespace base 80 } // namespace base
82 81
83 #endif // BASE_MAC_SCOPED_AUTHORIZATIONREF_H_ 82 #endif // BASE_MAC_SCOPED_AUTHORIZATIONREF_H_
OLDNEW
« no previous file with comments | « base/mac/mach_port_broker.h ('k') | base/mac/scoped_cftyperef.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698