Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1321)

Unified Diff: content/child/appcache/web_application_cache_host_impl.cc

Issue 330053004: Rename some appcache types in preparation for moving to content namespace (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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";

Powered by Google App Engine
This is Rietveld 408576698