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

  /external/webkit/WebCore/loader/appcache/
ApplicationCacheGroup.h 57 ApplicationCacheGroup(const KURL& manifestURL, bool isCopy = false);
65 static void selectCache(Frame*, const KURL& manifestURL);
68 const KURL& manifestURL() const { return m_manifestURL; }
ApplicationCacheStorage.cpp 94 ApplicationCacheGroup* ApplicationCacheStorage::loadCacheGroup(const KURL& manifestURL)
100 SQLiteStatement statement(m_database, "SELECT id, manifestURL, newestCache FROM CacheGroups WHERE newestCache IS NOT NULL AND manifestURL=?");
104 statement.bindText(1, manifestURL);
121 ApplicationCacheGroup* group = new ApplicationCacheGroup(manifestURL);
129 ApplicationCacheGroup* ApplicationCacheStorage::findOrCreateCacheGroup(const KURL& manifestURL)
131 ASSERT(!manifestURL.hasFragmentIdentifier());
133 std::pair<CacheGroupMap::iterator, bool> result = m_cachesInMemory.add(manifestURL, 0);
141 ApplicationCacheGroup* group = loadCacheGroup(manifestURL);
145 group = new ApplicationCacheGroup(manifestURL);
    [all...]

Completed in 1973 milliseconds