diff options
author | Steve Block <steveblock@google.com> | 2011-01-07 07:42:47 -0800 |
---|---|---|
committer | Android (Google) Code Review <android-gerrit@google.com> | 2011-01-07 07:42:47 -0800 |
commit | c9df0ca67d91d0ea87a1646b5cf6da382ce15109 (patch) | |
tree | ace94c4f1fa4fba5114570a8d0f19bd1cd3082d9 /WebKit/android/WebCoreSupport/WebCache.h | |
parent | 9ac7ecaba0b11e8d497f140cbc566efafb88c4dc (diff) | |
parent | 691f420dd0a859196c7dbcd514af42bcc945145c (diff) | |
download | external_webkit-c9df0ca67d91d0ea87a1646b5cf6da382ce15109.zip external_webkit-c9df0ca67d91d0ea87a1646b5cf6da382ce15109.tar.gz external_webkit-c9df0ca67d91d0ea87a1646b5cf6da382ce15109.tar.bz2 |
Merge "Adds an optimization to cache the WebCache backend" into honeycomb
Diffstat (limited to 'WebKit/android/WebCoreSupport/WebCache.h')
-rw-r--r-- | WebKit/android/WebCoreSupport/WebCache.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/WebKit/android/WebCoreSupport/WebCache.h b/WebKit/android/WebCoreSupport/WebCache.h index be6c968..d04a594 100644 --- a/WebKit/android/WebCoreSupport/WebCache.h +++ b/WebKit/android/WebCoreSupport/WebCache.h @@ -49,7 +49,7 @@ private: WebCache(bool isPrivateBrowsing); // For clear() - void doClear(); + void clearImpl(); void doomAllEntries(int); void onClearDone(int); @@ -61,7 +61,7 @@ private: // For clear() net::CompletionCallbackImpl<WebCache> m_doomAllEntriesCallback; - net::CompletionCallbackImpl<WebCache> m_doneCallback; + net::CompletionCallbackImpl<WebCache> m_onClearDoneCallback; disk_cache::Backend* m_cacheBackend; bool m_isClearInProgress; }; |