summaryrefslogtreecommitdiffstats
path: root/WebKit/android/WebCoreSupport/WebCache.h
diff options
context:
space:
mode:
authorSteve Block <steveblock@google.com>2011-01-07 07:42:47 -0800
committerAndroid (Google) Code Review <android-gerrit@google.com>2011-01-07 07:42:47 -0800
commitc9df0ca67d91d0ea87a1646b5cf6da382ce15109 (patch)
treeace94c4f1fa4fba5114570a8d0f19bd1cd3082d9 /WebKit/android/WebCoreSupport/WebCache.h
parent9ac7ecaba0b11e8d497f140cbc566efafb88c4dc (diff)
parent691f420dd0a859196c7dbcd514af42bcc945145c (diff)
downloadexternal_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.h4
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;
};