| Index: content/child/appcache/appcache_backend_proxy.cc
|
| diff --git a/content/child/appcache/appcache_backend_proxy.cc b/content/child/appcache/appcache_backend_proxy.cc
|
| index e1d96d636f24c5046f709072d7be41a409de3416..bf3149409f9cb9a9fca9b41090bf85a623d6bd19 100644
|
| --- a/content/child/appcache/appcache_backend_proxy.cc
|
| +++ b/content/child/appcache/appcache_backend_proxy.cc
|
| @@ -54,8 +54,8 @@ void AppCacheBackendProxy::MarkAsForeignEntry(
|
| cache_document_was_loaded_from));
|
| }
|
|
|
| -appcache::AppCacheStatus AppCacheBackendProxy::GetStatus(int host_id) {
|
| - appcache::AppCacheStatus status = appcache::APPCACHE_STATUS_UNCACHED;
|
| +AppCacheStatus AppCacheBackendProxy::GetStatus(int host_id) {
|
| + AppCacheStatus status = APPCACHE_STATUS_UNCACHED;
|
| sender_->Send(new AppCacheHostMsg_GetStatus(host_id, &status));
|
| return status;
|
| }
|
| @@ -73,7 +73,7 @@ bool AppCacheBackendProxy::SwapCache(int host_id) {
|
| }
|
|
|
| void AppCacheBackendProxy::GetResourceList(
|
| - int host_id, std::vector<appcache::AppCacheResourceInfo>* resource_infos) {
|
| + int host_id, std::vector<AppCacheResourceInfo>* resource_infos) {
|
| sender_->Send(new AppCacheHostMsg_GetResourceList(host_id, resource_infos));
|
| }
|
|
|
|
|