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

1 2 3 4 5 6

  /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;
mock_appcache_policy.h 19 virtual bool CanLoadAppCache(const GURL& manifest_url,
21 virtual bool CanCreateAppCache(const GURL& manifest_url,
appcache_policy.h 19 virtual bool CanLoadAppCache(const GURL& manifest_url,
23 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...]
mock_appcache_storage.h 36 virtual void LoadOrCreateGroup(const GURL& manifest_url,
53 const GURL& manifest_url, int64 group_id, int64 response_id) OVERRIDE;
55 const GURL& manifest_url, int64 group_id) OVERRIDE;
57 const GURL& manifest_url,
60 const GURL& manifest_url,
77 const GURL& manifest_url, scoped_refptr<DelegateReference> delegate_ref);
100 return IsGroupForManifestStored(group->manifest_url());
102 bool IsGroupForManifestStored(const GURL& manifest_url) {
103 return stored_groups_.find(manifest_url) != stored_groups_.end();
142 const GURL& manifest_url) {
    [all...]
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_storage.cc 43 const GURL& manifest_url,
48 manifest_url_(manifest_url),
83 const GURL& manifest_url, int64 group_id, int64 id, Delegate* delegate) {
90 GetOrCreateResponseInfoLoadTask(manifest_url, group_id, id);
91 DCHECK(manifest_url == info_load->manifest_url());
appcache_test_helper.cc 36 const GURL& manifest_url) {
39 manifest_url,
45 appcache->AddEntry(manifest_url, entry);
appcache_request_handler.cc 38 int64* cache_id, GURL* manifest_url) {
41 *manifest_url = job_->manifest_url();
187 const GURL& manifest_url, bool is_fallback,
195 job_->DeliverAppCachedResponse(manifest_url, group_id, cache_id,
233 int64 cache_id, int64 group_id, const GURL& manifest_url) {
245 bool was_blocked_by_policy = !manifest_url.is_empty() && policy &&
246 !policy->CanLoadAppCache(manifest_url, host_->first_party_url());
250 host_->NotifyMainResourceBlocked(manifest_url);
253 host_->frontend()->OnContentBlocked(host_->host_id(), manifest_url);
    [all...]
appcache_storage_impl.h 43 virtual void LoadOrCreateGroup(const GURL& manifest_url,
60 const GURL& manifest_url, int64 group_id, int64 response_id) OVERRIDE;
62 const GURL& manifest_url, int64 group_id) OVERRIDE;
63 virtual void DoomResponses(const GURL& manifest_url,
65 virtual void DeleteResponses(const GURL& manifest_url,
103 GroupLoadTask* GetPendingGroupLoadTask(const GURL& manifest_url);
132 int64 cache_id, int64 group_id, const GURL& manifest_url);
  /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/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));
  /external/chromium_org/chrome/browser/browsing_data/
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...]
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;
  /external/chromium/chrome/browser/
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_unittest.cc 57 EXPECT_EQ(manifest1, collection[manifest1.GetOrigin()].at(0).manifest_url);
62 manifest_results.insert(collection[manifest2.GetOrigin()].at(0).manifest_url);
63 manifest_results.insert(collection[manifest2.GetOrigin()].at(1).manifest_url);
89 EXPECT_EQ(manifest, collection[manifest.GetOrigin()].at(0).manifest_url);
mock_browsing_data_appcache_helper.cc 27 const GURL& manifest_url) {
mock_browsing_data_appcache_helper.h 19 virtual void DeleteAppCacheGroup(const GURL& 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/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.
  /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_);
appcache_frontend_proxy.cc 52 const GURL& manifest_url) {
53 sender_->Send(new AppCacheMsg_ContentBlocked(host_id, manifest_url));
  /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);

Completed in 2933 milliseconds

1 2 3 4 5 6