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

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

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.h
diff --git a/content/child/appcache/web_application_cache_host_impl.h b/content/child/appcache/web_application_cache_host_impl.h
index 4f570c53cf0ee195141cd45372bc8da804494905..07ec2dbaa3c4068c348730d328aea72b1ba87079 100644
--- a/content/child/appcache/web_application_cache_host_impl.h
+++ b/content/child/appcache/web_application_cache_host_impl.h
@@ -31,11 +31,11 @@ class WebApplicationCacheHostImpl
blink::WebApplicationCacheHostClient* client() const { return client_; }
virtual void OnCacheSelected(const appcache::AppCacheInfo& info);
- void OnStatusChanged(appcache::Status);
- void OnEventRaised(appcache::EventID);
+ void OnStatusChanged(appcache::AppCacheStatus);
+ void OnEventRaised(appcache::AppCacheEventID);
void OnProgressEventRaised(const GURL& url, int num_total, int num_complete);
- void OnErrorEventRaised(const appcache::ErrorDetails& details);
- virtual void OnLogMessage(appcache::LogLevel log_level,
+ void OnErrorEventRaised(const appcache::AppCacheErrorDetails& details);
+ virtual void OnLogMessage(appcache::AppCacheLogLevel log_level,
const std::string& message) {}
virtual void OnContentBlocked(const GURL& manifest_url) {}
@@ -64,7 +64,7 @@ class WebApplicationCacheHostImpl
blink::WebApplicationCacheHostClient* client_;
appcache::AppCacheBackend* backend_;
int host_id_;
- appcache::Status status_;
+ appcache::AppCacheStatus status_;
blink::WebURLResponse document_response_;
GURL document_url_;
bool is_scheme_supported_;

Powered by Google App Engine
This is Rietveld 408576698