diff options
Diffstat (limited to 'webkit/appcache/web_application_cache_host_impl.h')
-rw-r--r-- | webkit/appcache/web_application_cache_host_impl.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/webkit/appcache/web_application_cache_host_impl.h b/webkit/appcache/web_application_cache_host_impl.h index 6f19b0d..9990c2c 100644 --- a/webkit/appcache/web_application_cache_host_impl.h +++ b/webkit/appcache/web_application_cache_host_impl.h @@ -36,7 +36,7 @@ class WebApplicationCacheHostImpl : public WebKit::WebApplicationCacheHost { void OnStatusChanged(appcache::Status); void OnEventRaised(appcache::EventID); void OnProgressEventRaised(const GURL& url, int num_total, int num_complete); - void OnLogMessage(LogLevel log_level, const std::string& message); + virtual void OnLogMessage(LogLevel log_level, const std::string& message) {} virtual void OnContentBlocked() {} // WebApplicationCacheHost methods @@ -58,6 +58,8 @@ class WebApplicationCacheHostImpl : public WebKit::WebApplicationCacheHost { NO }; + void LogLoadedFromCacheMessage(); + WebKit::WebApplicationCacheHostClient* client_; AppCacheBackend* backend_; int host_id_; |