HomeSort by relevance Sort by last modified time
    Searched defs:WebCache (Results 1 - 5 of 5) sorted by null

  /external/webkit/Source/WebKit/win/
WebCache.h 31 class WebCache : public IWebCache
34 static WebCache* createInstance();
36 WebCache();
37 ~WebCache();
WebCache.cpp 28 #include "WebCache.h"
35 // WebCache ---------------------------------------------------------------------------
37 WebCache::WebCache()
41 gClassNameCount.add("WebCache");
44 WebCache::~WebCache()
47 gClassNameCount.remove("WebCache");
50 WebCache* WebCache::createInstance(
    [all...]
  /external/webkit/Source/WebKit/android/WebCoreSupport/
WebCache.h 40 class WebCache : public base::RefCountedThreadSafe<WebCache> {
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;
WebCache.cpp 27 #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>* instancePtr = instance(isPrivateBrowsing)
    [all...]
  /external/webkit/Source/WebKit/chromium/public/
WebCache.h 39 class WebCache {
84 WebCache(); // Not intended to be instanced.

Completed in 193 milliseconds