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

Side by Side Diff: crypto/openssl_util.h

Issue 6805019: Move crypto files out of base, to a top level directory. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Created 9 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 | Annotate | Revision Log
OLDNEW
1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2011 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_OPENSSL_UTIL_H_ 5 #ifndef CRYPTO_OPENSSL_UTIL_H_
6 #define BASE_OPENSSL_UTIL_H_ 6 #define CRYPTO_OPENSSL_UTIL_H_
7 #pragma once 7 #pragma once
8 8
9 #include "base/basictypes.h" 9 #include "base/basictypes.h"
10 #include "base/tracked.h" 10 #include "base/tracked.h"
11 11
12 namespace base { 12 namespace crypto {
13 13
14 // A helper class that takes care of destroying OpenSSL objects when it goes out 14 // A helper class that takes care of destroying OpenSSL objects when it goes out
15 // of scope. 15 // of scope.
16 template <typename T, void (*destructor)(T*)> 16 template <typename T, void (*destructor)(T*)>
17 class ScopedOpenSSL { 17 class ScopedOpenSSL {
18 public: 18 public:
19 ScopedOpenSSL() : ptr_(NULL) { } 19 ScopedOpenSSL() : ptr_(NULL) { }
20 explicit ScopedOpenSSL(T* ptr) : ptr_(ptr) { } 20 explicit ScopedOpenSSL(T* ptr) : ptr_(ptr) { }
21 ~ScopedOpenSSL() { 21 ~ScopedOpenSSL() {
22 reset(NULL); 22 reset(NULL);
(...skipping 78 matching lines...) Expand 10 before | Expand all | Expand 10 after
101 ~OpenSSLErrStackTracer() { 101 ~OpenSSLErrStackTracer() {
102 ClearOpenSSLERRStack(location_); 102 ClearOpenSSLERRStack(location_);
103 } 103 }
104 104
105 private: 105 private:
106 const tracked_objects::Location location_; 106 const tracked_objects::Location location_;
107 107
108 DISALLOW_IMPLICIT_CONSTRUCTORS(OpenSSLErrStackTracer); 108 DISALLOW_IMPLICIT_CONSTRUCTORS(OpenSSLErrStackTracer);
109 }; 109 };
110 110
111 } // namespace base 111 } // namespace crypto
112 112
113 #endif // BASE_OPENSSL_UTIL_H_ 113 #endif // CRYPTO_OPENSSL_UTIL_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698