HomeSort by relevance Sort by last modified time
    Searched refs:manifest_url (Results 1 - 25 of 121) sorted by null

1 2 3 4 5

  /external/chromium_org/webkit/browser/appcache/
mock_appcache_policy.cc 16 bool MockAppCachePolicy::CanLoadAppCache(const GURL& manifest_url,
18 requested_manifest_url_ = manifest_url;
22 bool MockAppCachePolicy::CanCreateAppCache(const GURL& manifest_url,
24 requested_manifest_url_ = manifest_url;
appcache_policy.h 19 virtual bool CanLoadAppCache(const GURL& manifest_url,
23 virtual bool CanCreateAppCache(const GURL& manifest_url,
mock_appcache_policy.h 19 virtual bool CanLoadAppCache(const GURL& manifest_url,
21 virtual bool CanCreateAppCache(const GURL& manifest_url,
appcache_host.cc 22 const GURL& manifest_url,
24 info->manifest_url = manifest_url;
80 const GURL& manifest_url) {
106 if (!manifest_url.is_empty() &&
107 (manifest_url.GetOrigin() == document_url.GetOrigin())) {
111 !policy->CanCreateAppCache(manifest_url, first_party_url_)) {
117 frontend_->OnContentBlocked(host_id_, manifest_url);
124 set_preferred_manifest_url(manifest_url);
126 LoadOrCreateGroup(manifest_url);
    [all...]
manifest_parser.h 57 WEBKIT_STORAGE_BROWSER_EXPORT bool ParseManifest(const GURL& manifest_url,
mock_appcache_storage.cc 69 const GURL& manifest_url, Delegate* delegate) {
71 AppCacheGroup* group = working_set_.GetGroup(manifest_url);
75 weak_factory_.GetWeakPtr(), manifest_url,
80 manifest_url, GetOrCreateDelegateReference(delegate));
154 const GURL& manifest_url, int64 group_id, int64 response_id) {
161 const GURL& manifest_url, int64 group_id) {
166 const GURL& manifest_url, const std::vector<int64>& response_ids) {
167 DeleteResponses(manifest_url, response_ids);
171 const GURL& manifest_url, const std::vector<int64>& response_ids) {
195 const GURL& manifest_url, scoped_refptr<DelegateReference> delegate_ref)
243 GURL manifest_url; member in struct:appcache::__anon17139::FoundCandidate
    [all...]
appcache_test_helper.cc 36 const GURL& manifest_url) {
39 manifest_url,
45 appcache->AddEntry(manifest_url, entry);
appcache_storage.h 47 AppCacheGroup* group, const GURL& manifest_url) {}
97 const GURL& manifest_url, Delegate* delegate) = 0;
105 const GURL& manifest_url, int64 group_id, int64 response_id,
158 const GURL& manifest_url, int64 group_id, int64 response_id) = 0;
163 const GURL& manifest_url, int64 group_id) = 0;
169 const GURL& manifest_url, const std::vector<int64>& response_ids) = 0;
174 const GURL& manifest_url, const std::vector<int64>& response_ids) = 0;
237 ResponseInfoLoadTask(const GURL& manifest_url, int64 group_id,
242 const GURL& manifest_url() const { return manifest_url_; } function in class:appcache::AppCacheStorage::ResponseInfoLoadTask
281 const GURL& manifest_url, int64 group_id, int64 response_id)
    [all...]
manifest_parser.cc 77 bool ParseManifest(const GURL& manifest_url, const char* data, int length,
191 GURL url = manifest_url.Resolve(url16);
201 if (url.scheme() != manifest_url.scheme()) {
236 GURL namespace_url = manifest_url.Resolve(namespace_url16);
247 if (manifest_url.GetOrigin() != namespace_url.GetOrigin())
283 GURL target_url = manifest_url.Resolve(target_url16);
292 if (manifest_url.GetOrigin() != target_url.GetOrigin())
314 GURL namespace_url = manifest_url.Resolve(namespace_url16);
325 if (manifest_url.GetOrigin() != namespace_url.GetOrigin()) {
340 GURL fallback_url = manifest_url.Resolve(fallback_url16)
    [all...]
  /external/chromium/chrome/browser/
mock_browsing_data_appcache_helper.h 19 virtual void DeleteAppCacheGroup(const GURL& manifest_url);
mock_browsing_data_appcache_helper.cc 27 const GURL& manifest_url) {
browsing_data_appcache_helper.cc 54 const GURL& manifest_url) {
58 manifest_url));
61 GetAppCacheService()->DeleteAppCacheGroup(manifest_url, NULL);
120 void CannedBrowsingDataAppCacheHelper::AddAppCache(const GURL& manifest_url) {
124 origin_map[manifest_url.GetOrigin()];
129 if (appcache->manifest_url == manifest_url)
134 info.manifest_url = manifest_url;
browsing_data_appcache_helper.h 26 virtual void DeleteAppCacheGroup(const GURL& manifest_url);
66 void AddAppCache(const GURL& manifest_url);
  /external/chromium_org/chrome/browser/browsing_data/
mock_browsing_data_appcache_helper.cc 23 const GURL& manifest_url) {
mock_browsing_data_appcache_helper.h 17 virtual void DeleteAppCacheGroup(const GURL& manifest_url) OVERRIDE;
browsing_data_appcache_helper.cc 49 const GURL& manifest_url) {
54 manifest_url));
58 appcache_service_->DeleteAppCacheGroup(manifest_url,
107 void CannedBrowsingDataAppCacheHelper::AddAppCache(const GURL& manifest_url) {
108 if (!BrowsingDataHelper::HasWebScheme(manifest_url))
113 origin_map[manifest_url.GetOrigin()];
118 if (appcache->manifest_url == manifest_url)
123 info.manifest_url = manifest_url;
    [all...]
  /external/chromium_org/components/nacl/common/
nacl_types.cc 30 NaClLaunchParams::NaClLaunchParams(const std::string& manifest_url,
36 : manifest_url(manifest_url),
45 manifest_url = l.manifest_url;
  /external/chromium/chrome/browser/ui/views/
appcache_info_view.cc 27 string16 manifest_url = local
28 UTF8ToUTF16(info->manifest_url.spec());
36 SetValue(row++, manifest_url);
  /external/chromium_org/chrome/common/extensions/
manifest_url_handler.cc 41 ManifestURL* manifest_url = local
43 return manifest_url ? manifest_url->url_ : GURL::EmptyGURL();
111 scoped_ptr<ManifestURL> manifest_url(new ManifestURL);
117 manifest_url->url_ = extension->GetResourceURL(devtools_str);
118 extension->SetManifestData(keys::kDevToolsPage, manifest_url.release());
135 scoped_ptr<ManifestURL> manifest_url(new ManifestURL);
143 manifest_url->url_ = GURL(homepage_url_str);
144 if (!manifest_url->url_.is_valid() ||
145 (!manifest_url->url_.SchemeIs("http") &
    [all...]
  /external/chromium_org/content/browser/appcache/
chrome_appcache_service.cc 53 bool ChromeAppCacheService::CanLoadAppCache(const GURL& manifest_url,
58 manifest_url, first_party, resource_context_);
62 const GURL& manifest_url, const GURL& first_party) {
65 manifest_url, first_party, resource_context_);
chrome_appcache_service.h 55 virtual bool CanLoadAppCache(const GURL& manifest_url,
57 virtual bool CanCreateAppCache(const GURL& manifest_url,
  /external/chromium_org/content/renderer/
renderer_webapplicationcachehost_impl.cc 44 const GURL& manifest_url) {
46 routing_id_, manifest_url, true));
51 if (!info.manifest_url.is_empty()) {
53 routing_id_, info.manifest_url, false));
renderer_webapplicationcachehost_impl.h 23 virtual void OnContentBlocked(const GURL& manifest_url) OVERRIDE;
  /external/chromium_org/chrome/browser/nacl_host/
nacl_host_message_filter.cc 20 GURL manifest_url(manifest);
22 .GetExtensionOrAppByURL(manifest_url);
24 manifest_url.SchemeIs(extensions::kExtensionScheme)) {
25 std::string path = manifest_url.path();
89 GURL(launch_params.manifest_url),
97 base::FilePath manifest_url = local
98 GetManifestPath(extension_info_map_.get(), launch_params.manifest_url);
99 host->Launch(this, reply_msg, manifest_url);
  /external/chromium_org/chrome/common/
web_application_info.h 31 GURL manifest_url; member in struct:WebApplicationInfo
37 // reloading the manifest_url.
56 // All these must be of the same origin as manifest_url.

Completed in 341 milliseconds

1 2 3 4 5