Searched defs:host_ids (Results 1 - 4 of 4) sorted by relevance

/external/chromium_org/content/browser/appcache/
H A Dappcache_frontend_proxy.cc20 void AppCacheFrontendProxy::OnStatusChanged(const std::vector<int>& host_ids, argument
22 sender_->Send(new AppCacheMsg_StatusChanged(host_ids, status));
25 void AppCacheFrontendProxy::OnEventRaised(const std::vector<int>& host_ids, argument
29 sender_->Send(new AppCacheMsg_EventRaised(host_ids, event_id));
33 const std::vector<int>& host_ids,
36 host_ids, url, num_total, num_complete));
40 const std::vector<int>& host_ids,
42 sender_->Send(new AppCacheMsg_ErrorEventRaised(host_ids, details));
32 OnProgressEventRaised( const std::vector<int>& host_ids, const GURL& url, int num_total, int num_complete) argument
39 OnErrorEventRaised( const std::vector<int>& host_ids, const appcache::AppCacheErrorDetails& details) argument
H A Dappcache_update_job_unittest.cc250 virtual void OnStatusChanged(const std::vector<int>& host_ids,
254 virtual void OnEventRaised(const std::vector<int>& host_ids,
256 raised_events_.push_back(RaisedEvent(host_ids, event_id));
270 virtual void OnErrorEventRaised(const std::vector<int>& host_ids,
274 OnEventRaised(host_ids, APPCACHE_ERROR_EVENT);
277 virtual void OnProgressEventRaised(const std::vector<int>& host_ids,
282 OnEventRaised(host_ids, APPCACHE_PROGRESS_EVENT);
317 void AddExpectedEvent(const std::vector<int>& host_ids, argument
320 expected_events_.push_back(RaisedEvent(host_ids, event_id));
724 MockFrontend::HostIds& host_ids local
[all...]
/external/chromium_org/content/child/appcache/
H A Dappcache_dispatcher.cc39 void AppCacheDispatcher::OnStatusChanged(const std::vector<int>& host_ids, argument
41 frontend_->OnStatusChanged(host_ids, status);
44 void AppCacheDispatcher::OnEventRaised(const std::vector<int>& host_ids, argument
46 frontend_->OnEventRaised(host_ids, event_id);
50 const std::vector<int>& host_ids,
52 frontend_->OnProgressEventRaised(host_ids, url, num_total, num_complete);
56 const std::vector<int>& host_ids,
58 frontend_->OnErrorEventRaised(host_ids, details);
49 OnProgressEventRaised( const std::vector<int>& host_ids, const GURL& url, int num_total, int num_complete) argument
55 OnErrorEventRaised( const std::vector<int>& host_ids, const appcache::AppCacheErrorDetails& details) argument
H A Dappcache_frontend_impl.cc28 void AppCacheFrontendImpl::OnStatusChanged(const std::vector<int>& host_ids, argument
30 for (std::vector<int>::const_iterator i = host_ids.begin();
31 i != host_ids.end(); ++i) {
38 void AppCacheFrontendImpl::OnEventRaised(const std::vector<int>& host_ids, argument
43 for (std::vector<int>::const_iterator i = host_ids.begin();
44 i != host_ids.end(); ++i) {
52 const std::vector<int>& host_ids,
56 for (std::vector<int>::const_iterator i = host_ids.begin();
57 i != host_ids.end(); ++i) {
65 const std::vector<int>& host_ids,
51 OnProgressEventRaised( const std::vector<int>& host_ids, const GURL& url, int num_total, int num_complete) argument
64 OnErrorEventRaised( const std::vector<int>& host_ids, const appcache::AppCacheErrorDetails& details) argument
[all...]

Completed in 151 milliseconds