diff options
author | joth@chromium.org <joth@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-11-23 12:38:53 +0000 |
---|---|---|
committer | joth@chromium.org <joth@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-11-23 12:38:53 +0000 |
commit | fbef1393c05a472d206edeed89c5c494da0b3381 (patch) | |
tree | 65bb1585099c2452bccdd6ba5bb811dd9608dc75 /base | |
parent | ed7437e04dce8563188f572a342357c023041d26 (diff) | |
download | chromium_src-fbef1393c05a472d206edeed89c5c494da0b3381.zip chromium_src-fbef1393c05a472d206edeed89c5c494da0b3381.tar.gz chromium_src-fbef1393c05a472d206edeed89c5c494da0b3381.tar.bz2 |
Implements openssl session caching
Also fixes up the ssl socket handling of the OpenSSL error stack, and resolves a few TODOs.
BUG=None
TEST=opening https: pages with vlog=3 enabled and expected the log
Review URL: http://codereview.chromium.org/5100010
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@67087 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'base')
-rw-r--r-- | base/openssl_util.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/base/openssl_util.h b/base/openssl_util.h index 9362302..60cb0b7 100644 --- a/base/openssl_util.h +++ b/base/openssl_util.h @@ -30,6 +30,8 @@ class ScopedOpenSSL { private: T* ptr_; + + DISALLOW_COPY_AND_ASSIGN(ScopedOpenSSL); }; // Provides a buffer of at least MIN_SIZE bytes, for use when calling OpenSSL's |