| Index: content/child/appcache/web_application_cache_host_impl.cc
|
| diff --git a/content/child/appcache/web_application_cache_host_impl.cc b/content/child/appcache/web_application_cache_host_impl.cc
|
| index fb996eeb30909affce65502b21fe7cf63719353f..1c5630d5ce1413c18ee395e741141e1657d16e68 100644
|
| --- a/content/child/appcache/web_application_cache_host_impl.cc
|
| +++ b/content/child/appcache/web_application_cache_host_impl.cc
|
| @@ -82,11 +82,13 @@ void WebApplicationCacheHostImpl::OnCacheSelected(
|
| client_->didChangeCacheAssociation();
|
| }
|
|
|
| -void WebApplicationCacheHostImpl::OnStatusChanged(appcache::Status status) {
|
| +void WebApplicationCacheHostImpl::OnStatusChanged(
|
| + appcache::AppCacheStatus status) {
|
| // TODO(michaeln): delete me, not used
|
| }
|
|
|
| -void WebApplicationCacheHostImpl::OnEventRaised(appcache::EventID event_id) {
|
| +void WebApplicationCacheHostImpl::OnEventRaised(
|
| + appcache::AppCacheEventID event_id) {
|
| DCHECK(event_id != appcache::PROGRESS_EVENT); // See OnProgressEventRaised.
|
| DCHECK(event_id != appcache::ERROR_EVENT); // See OnErrorEventRaised.
|
|
|
| @@ -135,7 +137,7 @@ void WebApplicationCacheHostImpl::OnProgressEventRaised(
|
| }
|
|
|
| void WebApplicationCacheHostImpl::OnErrorEventRaised(
|
| - const appcache::ErrorDetails& details) {
|
| + const appcache::AppCacheErrorDetails& details) {
|
| // Emit logging output prior to calling out to script as we can get
|
| // deleted within the script event handler.
|
| const char* kFormatString = "Application Cache Error event: %s";
|
|
|