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

Unified Diff: net/http/disk_cache_based_ssl_host_info.cc

Issue 7065045: Fix nits related to SSLHostInfo. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Created 9 years, 7 months 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « net/http/disk_cache_based_ssl_host_info.h ('k') | net/socket/ssl_client_socket_pool.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: net/http/disk_cache_based_ssl_host_info.cc
===================================================================
--- net/http/disk_cache_based_ssl_host_info.cc (revision 86506)
+++ net/http/disk_cache_based_ssl_host_info.cc (working copy)
@@ -120,7 +120,7 @@
rv = DoReadComplete(rv);
break;
case WAIT_FOR_DATA_READY_DONE:
- rv = WaitForDataReadyDone();
+ rv = DoWaitForDataReadyDone();
break;
case CREATE:
rv = DoCreate();
@@ -135,7 +135,7 @@
rv = DoWriteComplete(rv);
break;
case SET_DONE:
- rv = SetDone();
+ rv = DoSetDone();
break;
default:
rv = OK;
@@ -226,7 +226,7 @@
return backend_->CreateEntry(key(), callback_->entry_pointer(), callback_);
}
-int DiskCacheBasedSSLHostInfo::WaitForDataReadyDone() {
+int DiskCacheBasedSSLHostInfo::DoWaitForDataReadyDone() {
CompletionCallback* callback;
DCHECK(!ready_);
@@ -247,7 +247,7 @@
return OK;
}
-int DiskCacheBasedSSLHostInfo::SetDone() {
+int DiskCacheBasedSSLHostInfo::DoSetDone() {
if (entry_)
entry_->Close();
entry_ = NULL;
« no previous file with comments | « net/http/disk_cache_based_ssl_host_info.h ('k') | net/socket/ssl_client_socket_pool.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698