| OLD | NEW |
| 1 // Copyright (c) 2011 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 NET_HTTP_DISK_CACHE_BASED_SSL_HOST_INFO_H_ | 5 #ifndef NET_HTTP_DISK_CACHE_BASED_SSL_HOST_INFO_H_ |
| 6 #define NET_HTTP_DISK_CACHE_BASED_SSL_HOST_INFO_H_ | 6 #define NET_HTTP_DISK_CACHE_BASED_SSL_HOST_INFO_H_ |
| 7 | 7 |
| 8 #include <string> | 8 #include <string> |
| 9 | 9 |
| 10 #include "base/memory/scoped_ptr.h" | 10 #include "base/memory/scoped_ptr.h" |
| (...skipping 14 matching lines...) Expand all Loading... |
| 25 // it's ok for us to keep it on disk. | 25 // it's ok for us to keep it on disk. |
| 26 class NET_EXPORT_PRIVATE DiskCacheBasedSSLHostInfo | 26 class NET_EXPORT_PRIVATE DiskCacheBasedSSLHostInfo |
| 27 : public SSLHostInfo, | 27 : public SSLHostInfo, |
| 28 public NON_EXPORTED_BASE(base::NonThreadSafe) { | 28 public NON_EXPORTED_BASE(base::NonThreadSafe) { |
| 29 public: | 29 public: |
| 30 DiskCacheBasedSSLHostInfo(const std::string& hostname, | 30 DiskCacheBasedSSLHostInfo(const std::string& hostname, |
| 31 const SSLConfig& ssl_config, | 31 const SSLConfig& ssl_config, |
| 32 CertVerifier* cert_verifier, | 32 CertVerifier* cert_verifier, |
| 33 HttpCache* http_cache); | 33 HttpCache* http_cache); |
| 34 | 34 |
| 35 // Implementation of SSLHostInfo | 35 // SSLHostInfo implementation. |
| 36 virtual void Start() OVERRIDE; | 36 virtual void Start() OVERRIDE; |
| 37 virtual int WaitForDataReady(OldCompletionCallback* callback) OVERRIDE; | 37 virtual int WaitForDataReady(const CompletionCallback& callback) OVERRIDE; |
| 38 virtual void Persist() OVERRIDE; | 38 virtual void Persist() OVERRIDE; |
| 39 | 39 |
| 40 private: | 40 private: |
| 41 enum State { | 41 enum State { |
| 42 GET_BACKEND, | 42 GET_BACKEND, |
| 43 GET_BACKEND_COMPLETE, | 43 GET_BACKEND_COMPLETE, |
| 44 OPEN, | 44 OPEN, |
| 45 OPEN_COMPLETE, | 45 OPEN_COMPLETE, |
| 46 READ, | 46 READ, |
| 47 READ_COMPLETE, | 47 READ_COMPLETE, |
| (...skipping 60 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 108 base::WeakPtrFactory<DiskCacheBasedSSLHostInfo> weak_ptr_factory_; | 108 base::WeakPtrFactory<DiskCacheBasedSSLHostInfo> weak_ptr_factory_; |
| 109 CallbackImpl* callback_; | 109 CallbackImpl* callback_; |
| 110 State state_; | 110 State state_; |
| 111 bool ready_; | 111 bool ready_; |
| 112 bool found_entry_; // Controls the behavior of DoCreateOrOpen. | 112 bool found_entry_; // Controls the behavior of DoCreateOrOpen. |
| 113 std::string new_data_; | 113 std::string new_data_; |
| 114 const std::string hostname_; | 114 const std::string hostname_; |
| 115 HttpCache* const http_cache_; | 115 HttpCache* const http_cache_; |
| 116 disk_cache::Backend* backend_; | 116 disk_cache::Backend* backend_; |
| 117 disk_cache::Entry* entry_; | 117 disk_cache::Entry* entry_; |
| 118 OldCompletionCallback* user_callback_; | 118 CompletionCallback user_callback_; |
| 119 scoped_refptr<IOBuffer> read_buffer_; | 119 scoped_refptr<IOBuffer> read_buffer_; |
| 120 scoped_refptr<IOBuffer> write_buffer_; | 120 scoped_refptr<IOBuffer> write_buffer_; |
| 121 std::string data_; | 121 std::string data_; |
| 122 }; | 122 }; |
| 123 | 123 |
| 124 } // namespace net | 124 } // namespace net |
| 125 | 125 |
| 126 #endif // NET_HTTP_DISK_CACHE_BASED_SSL_HOST_INFO_H_ | 126 #endif // NET_HTTP_DISK_CACHE_BASED_SSL_HOST_INFO_H_ |
| OLD | NEW |