OLD | NEW |
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/basictypes.h" | 10 #include "base/basictypes.h" |
(...skipping 31 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
42 } | 42 } |
43 | 43 |
44 bool operator!=(AuthorizationRef that) const { | 44 bool operator!=(AuthorizationRef that) const { |
45 return authorization_ != that; | 45 return authorization_ != that; |
46 } | 46 } |
47 | 47 |
48 operator AuthorizationRef() const { | 48 operator AuthorizationRef() const { |
49 return authorization_; | 49 return authorization_; |
50 } | 50 } |
51 | 51 |
52 AuthorizationRef* get_pointer() { return &authorization_; } | 52 AuthorizationRef* operator&() { |
| 53 return &authorization_; |
| 54 } |
53 | 55 |
54 AuthorizationRef get() const { | 56 AuthorizationRef get() const { |
55 return authorization_; | 57 return authorization_; |
56 } | 58 } |
57 | 59 |
58 void swap(ScopedAuthorizationRef& that) { | 60 void swap(ScopedAuthorizationRef& that) { |
59 AuthorizationRef temp = that.authorization_; | 61 AuthorizationRef temp = that.authorization_; |
60 that.authorization_ = authorization_; | 62 that.authorization_ = authorization_; |
61 authorization_ = temp; | 63 authorization_ = temp; |
62 } | 64 } |
(...skipping 11 matching lines...) Expand all Loading... |
74 private: | 76 private: |
75 AuthorizationRef authorization_; | 77 AuthorizationRef authorization_; |
76 | 78 |
77 DISALLOW_COPY_AND_ASSIGN(ScopedAuthorizationRef); | 79 DISALLOW_COPY_AND_ASSIGN(ScopedAuthorizationRef); |
78 }; | 80 }; |
79 | 81 |
80 } // namespace mac | 82 } // namespace mac |
81 } // namespace base | 83 } // namespace base |
82 | 84 |
83 #endif // BASE_MAC_SCOPED_AUTHORIZATIONREF_H_ | 85 #endif // BASE_MAC_SCOPED_AUTHORIZATIONREF_H_ |
OLD | NEW |