HomeSort by relevance Sort by last modified time
    Searched refs:namespace_url (Results 1 - 14 of 14) sorted by null

  /external/chromium_org/webkit/common/appcache/
appcache_interfaces.cc 68 namespace_url(url),
78 namespace_url(url),
91 std::string pattern = namespace_url.spec();
92 if (namespace_url.has_query())
96 return StartsWithASCII(url.spec(), namespace_url.spec(), true);
appcache_interfaces.h 111 GURL namespace_url; member in struct:appcache::Namespace
  /external/chromium_org/webkit/browser/appcache/
manifest_parser_unittest.cc 143 EXPECT_EQ(GURL("http://www.bar.com/relative/one"), online[0].namespace_url);
144 EXPECT_EQ(GURL("http://www.bar.com/two"), online[1].namespace_url);
145 EXPECT_EQ(GURL("http://www.diff.com/three"), online[2].namespace_url);
146 EXPECT_EQ(GURL("http://www.bar.com/relative/four"), online[3].namespace_url);
147 EXPECT_EQ(GURL("http://www.five.com"), online[4].namespace_url);
148 EXPECT_EQ(GURL("http://www.bar.com/*foo"), online[5].namespace_url);
191 fallbacks[0].namespace_url);
195 fallbacks[1].namespace_url);
199 fallbacks[2].namespace_url);
203 fallbacks[3].namespace_url);
    [all...]
manifest_parser.cc 236 GURL namespace_url = manifest_url.Resolve(namespace_url16); local
237 if (!namespace_url.is_valid())
239 if (namespace_url.has_ref()) {
242 namespace_url = namespace_url.ReplaceComponents(replacements);
247 if (manifest_url.GetOrigin() != namespace_url.GetOrigin())
297 Namespace(INTERCEPT_NAMESPACE, namespace_url,
314 GURL namespace_url = manifest_url.Resolve(namespace_url16); local
315 if (!namespace_url.is_valid())
317 if (namespace_url.has_ref())
    [all...]
appcache.h 79 // Returns the URL of the resource used as entry for 'namespace_url'.
80 GURL GetFallbackEntryUrl(const GURL& namespace_url) const {
81 return GetNamespaceEntryUrl(fallback_namespaces_, namespace_url);
83 GURL GetInterceptEntryUrl(const GURL& namespace_url) const {
84 return GetNamespaceEntryUrl(intercept_namespaces_, namespace_url);
166 const GURL& namespace_url) const;
appcache.cc 119 const GURL& namespace_url) const {
122 if (namespaces[i].namespace_url == namespace_url)
132 return lhs.namespace_url.spec().length() > rhs.namespace_url.spec().length();
185 record.namespace_url,
241 record.namespace_url = online_whitelist_namespaces_[i].namespace_url;
276 *found_intercept_namespace = intercept_namespace->namespace_url;
285 *found_fallback_namespace = fallback_namespace->namespace_url;
    [all...]
appcache_database_unittest.cc 397 record.namespace_.namespace_url = kFooNameSpace1;
404 record.namespace_.namespace_url = kFooNameSpace2;
413 EXPECT_EQ(kFooNameSpace1, fallbacks[0].namespace_.namespace_url);
422 EXPECT_EQ(kFooNameSpace2, fallbacks[0].namespace_.namespace_url);
431 EXPECT_EQ(kFooNameSpace1, fallbacks[0].namespace_.namespace_url);
436 EXPECT_EQ(kFooNameSpace2, fallbacks[1].namespace_.namespace_url);
446 EXPECT_EQ(kFooNameSpace2, fallbacks[0].namespace_.namespace_url);
453 record.namespace_.namespace_url = kBarNameSpace1;
460 record.namespace_.namespace_url = kBarNameSpace2;
499 record.namespace_url = kFooNameSpace1
    [all...]
mock_appcache_storage.cc 253 const GURL& namespace_url,
267 namespace_url.spec().length();
284 cache->GetFallbackEntryUrl(namespace_url);
287 cache->GetInterceptEntryUrl(namespace_url);
294 *best_candidate_namespace = namespace_url;
appcache_unittest.cc 127 EXPECT_EQ(GURL("http://fb1.com"), fallbacks[0].namespace_url);
133 EXPECT_EQ(GURL("http://w1.com"), whitelist[0].namespace_url);
134 EXPECT_EQ(GURL("http://w2.com"), whitelist[1].namespace_url);
568 cache->online_whitelist_namespaces_[0].namespace_url);
619 cache->online_whitelist_namespaces_[0].namespace_url);
624 prefix.namespace_url = GURL("http://foo.com/prefix");
632 bar_no_star.namespace_url = GURL("http://foo.com/bar");
640 bar_star.namespace_url = GURL("http://foo.com/bar/*");
650 star_bar_star.namespace_url = GURL("http://foo.com/*/bar/*");
660 query_star_edit.namespace_url = GURL("http://foo.com/query?id=*&verb=edit*")
    [all...]
appcache_database.cc 79 " namespace_url TEXT,"
85 " namespace_url TEXT,"
135 "(cache_id, namespace_url)",
665 "SELECT cache_id, origin, type, namespace_url, target_url, is_pattern"
686 "SELECT cache_id, origin, type, namespace_url, target_url, is_pattern"
704 " (cache_id, origin, type, namespace_url, target_url, is_pattern)"
720 statement.BindString(3, record->namespace_.namespace_url.spec());
762 "SELECT cache_id, namespace_url, is_pattern FROM OnlineWhiteLists"
782 "INSERT INTO OnlineWhiteLists (cache_id, namespace_url, is_pattern)"
787 statement.BindString(1, record->namespace_url.spec())
    [all...]
appcache_database.h 79 GURL namespace_url; member in struct:appcache::AppCacheDatabase::OnlineWhiteListRecord
appcache_storage_impl_unittest.cc 697 fallback_namespace_record.namespace_.namespace_url = kFallbackNamespace;
703 online_whitelist_record.namespace_url = kOnlineNamespace;
    [all...]
appcache_storage_impl.cc 816 return lhs.namespace_.namespace_url.spec().length() >
817 rhs.namespace_.namespace_url.spec().length();
847 Namespace(NETWORK_NAMESPACE, iter->namespace_url, GURL(),
    [all...]
appcache_update_job_unittest.cc 207 lhs.namespace_url == rhs.namespace_url &&
    [all...]

Completed in 74 milliseconds