Searched defs:WebCache (Results 1 - 5 of 5) sorted by relevance

/external/webkit/Source/WebKit/win/
H A DWebCache.h31 class WebCache : public IWebCache class in inherits:IWebCache
34 static WebCache* createInstance();
36 WebCache();
37 ~WebCache();
H A DWebCache.cpp28 #include "WebCache.h"
35 // WebCache ---------------------------------------------------------------------------
37 WebCache::WebCache() function in class:WebCache
41 gClassNameCount.add("WebCache");
44 WebCache::~WebCache()
47 gClassNameCount.remove("WebCache");
50 WebCache* WebCache
[all...]
/external/webkit/Source/WebKit/android/WebCoreSupport/
H A DWebCache.h40 class WebCache : public base::RefCountedThreadSafe<WebCache> { class in namespace:android
42 static WebCache* get(bool isPrivateBrowsing);
54 WebCache(bool isPrivateBrowsing);
77 net::CompletionCallbackImpl<WebCache> m_doomAllEntriesCallback;
78 net::CompletionCallbackImpl<WebCache> m_onClearDoneCallback;
81 net::CompletionCallbackImpl<WebCache> m_openEntryCallback;
82 net::CompletionCallbackImpl<WebCache> m_onGetEntryDoneCallback;
H A DWebCache.cpp27 #include "WebCache.h"
63 static scoped_refptr<WebCache>* instance(bool isPrivateBrowsing)
65 static scoped_refptr<WebCache> regularInstance;
66 static scoped_refptr<WebCache> privateInstance;
70 WebCache* WebCache::get(bool isPrivateBrowsing)
73 scoped_refptr<WebCache>* instancePtr = instance(isPrivateBrowsing);
75 *instancePtr = new WebCache(isPrivateBrowsing);
79 void WebCache::cleanup(bool isPrivateBrowsing)
82 scoped_refptr<WebCache>* instancePt
86 WebCache::WebCache(bool isPrivateBrowsing) function in class:android::WebCache
[all...]
/external/webkit/Source/WebKit/chromium/public/
H A DWebCache.h39 class WebCache { class in namespace:WebKit
84 WebCache(); // Not intended to be instanced.

Completed in 161 milliseconds