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

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

Issue 988113002: Revert of base: Remove operator& from ScopedAuthorizationRef. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 9 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/authorization_util.mm ('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 (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
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
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_
OLDNEW
« no previous file with comments | « base/mac/authorization_util.mm ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698