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; |