Chromium Code Reviews| Index: content/browser/renderer_host/pepper/ssl_context_helper.h |
| diff --git a/content/browser/renderer_host/pepper/ssl_context_helper.h b/content/browser/renderer_host/pepper/ssl_context_helper.h |
| new file mode 100644 |
| index 0000000000000000000000000000000000000000..52ffc54ad64c5732cf1fbe98738a91476d97c3a0 |
| --- /dev/null |
| +++ b/content/browser/renderer_host/pepper/ssl_context_helper.h |
| @@ -0,0 +1,45 @@ |
| +// Copyright 2013 The Chromium Authors. All rights reserved. |
| +// Use of this source code is governed by a BSD-style license that can be |
| +// found in the LICENSE file. |
| + |
| +#ifndef CONTENT_BROWSER_RENDERER_HOST_PEPPER_SSL_CONTEXT_HELPER_H_ |
| +#define CONTENT_BROWSER_RENDERER_HOST_PEPPER_SSL_CONTEXT_HELPER_H_ |
| + |
| +#include "base/basictypes.h" |
| +#include "base/memory/ref_counted.h" |
| +#include "base/memory/scoped_ptr.h" |
| +#include "net/ssl/ssl_config_service.h" |
| + |
| +namespace net { |
| +class CertVerifier; |
| +class TransportSecurityState; |
| +} |
| + |
| +namespace content { |
| + |
| +class SSLContextHelper : public base::RefCounted<SSLContextHelper> { |
| + public: |
| + SSLContextHelper(); |
| + virtual ~SSLContextHelper(); |
|
yzshen1
2013/08/16 20:40:42
// private:
// friend class base::RefCounte
ygorshenin1
2013/08/19 14:33:35
Done.
|
| + |
| + net::CertVerifier* GetCertVerifier(); |
| + net::TransportSecurityState* GetTransportSecurityState(); |
| + const net::SSLConfig& ssl_config() { return ssl_config_; } |
| + |
| + private: |
| + // This is lazily created. Users should use GetCertVerifier to retrieve it. |
| + scoped_ptr<net::CertVerifier> cert_verifier_; |
| + // This is lazily created. Users should use GetTransportSecurityState to |
| + // retrieve it. |
| + scoped_ptr<net::TransportSecurityState> transport_security_state_; |
| + |
| + // The default SSL configuration settings are used, as opposed to Chrome's SSL |
| + // settings. |
| + net::SSLConfig ssl_config_; |
| + |
| + DISALLOW_COPY_AND_ASSIGN(SSLContextHelper); |
| +}; |
| + |
| +} // namespace content |
| + |
| +#endif // CONTENT_BROWSER_RENDERER_HOST_PEPPER_SSL_CONTEXT_HELPER_H_ |