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 88 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
99 // DoWaitForDataReadyDone is the terminal state of the read operation. | 99 // DoWaitForDataReadyDone is the terminal state of the read operation. |
100 int DoWaitForDataReadyDone(); | 100 int DoWaitForDataReadyDone(); |
101 | 101 |
102 // DoSetDone is the terminal state of the write operation. | 102 // DoSetDone is the terminal state of the write operation. |
103 int DoSetDone(); | 103 int DoSetDone(); |
104 | 104 |
105 // IsCallbackPending returns true if we have a pending callback. | 105 // IsCallbackPending returns true if we have a pending callback. |
106 bool IsCallbackPending() const; | 106 bool IsCallbackPending() const; |
107 | 107 |
108 base::WeakPtrFactory<DiskCacheBasedSSLHostInfo> weak_ptr_factory_; | 108 base::WeakPtrFactory<DiskCacheBasedSSLHostInfo> weak_ptr_factory_; |
109 CompletionCallback 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 CompletionCallback 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 |