| Index: content/browser/appcache/appcache_frontend_proxy.cc
|
| diff --git a/content/browser/appcache/appcache_frontend_proxy.cc b/content/browser/appcache/appcache_frontend_proxy.cc
|
| index ea693e9d71e0b198f31c5c4effa672593e406fbb..4242304acb00521f2945e9b3c938fcc6852ac523 100644
|
| --- a/content/browser/appcache/appcache_frontend_proxy.cc
|
| +++ b/content/browser/appcache/appcache_frontend_proxy.cc
|
| @@ -13,18 +13,18 @@ AppCacheFrontendProxy::AppCacheFrontendProxy(IPC::Sender* sender)
|
| }
|
|
|
| void AppCacheFrontendProxy::OnCacheSelected(
|
| - int host_id, const appcache::AppCacheInfo& info) {
|
| + int host_id, const AppCacheInfo& info) {
|
| sender_->Send(new AppCacheMsg_CacheSelected(host_id, info));
|
| }
|
|
|
| void AppCacheFrontendProxy::OnStatusChanged(const std::vector<int>& host_ids,
|
| - appcache::AppCacheStatus status) {
|
| + AppCacheStatus status) {
|
| sender_->Send(new AppCacheMsg_StatusChanged(host_ids, status));
|
| }
|
|
|
| void AppCacheFrontendProxy::OnEventRaised(const std::vector<int>& host_ids,
|
| - appcache::AppCacheEventID event_id) {
|
| - DCHECK_NE(appcache::APPCACHE_PROGRESS_EVENT,
|
| + AppCacheEventID event_id) {
|
| + DCHECK_NE(APPCACHE_PROGRESS_EVENT,
|
| event_id); // See OnProgressEventRaised.
|
| sender_->Send(new AppCacheMsg_EventRaised(host_ids, event_id));
|
| }
|
| @@ -38,12 +38,12 @@ void AppCacheFrontendProxy::OnProgressEventRaised(
|
|
|
| void AppCacheFrontendProxy::OnErrorEventRaised(
|
| const std::vector<int>& host_ids,
|
| - const appcache::AppCacheErrorDetails& details) {
|
| + const AppCacheErrorDetails& details) {
|
| sender_->Send(new AppCacheMsg_ErrorEventRaised(host_ids, details));
|
| }
|
|
|
| void AppCacheFrontendProxy::OnLogMessage(int host_id,
|
| - appcache::AppCacheLogLevel log_level,
|
| + AppCacheLogLevel log_level,
|
| const std::string& message) {
|
| sender_->Send(new AppCacheMsg_LogMessage(host_id, log_level, message));
|
| }
|
|
|