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

Side by Side Diff: net/http/disk_cache_based_ssl_host_info.h

Issue 8832006: Reverts a commit that caused ASAN failures, and 2 dependent commits. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 9 years 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
« no previous file with comments | « net/disk_cache/mem_entry_impl.cc ('k') | net/http/disk_cache_based_ssl_host_info.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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_
OLDNEW
« no previous file with comments | « net/disk_cache/mem_entry_impl.cc ('k') | net/http/disk_cache_based_ssl_host_info.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698