summaryrefslogtreecommitdiffstats
path: root/webkit/appcache/web_application_cache_host_impl.h
diff options
context:
space:
mode:
authormichaeln@chromium.org <michaeln@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2010-06-25 00:46:02 +0000
committermichaeln@chromium.org <michaeln@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2010-06-25 00:46:02 +0000
commitdf4cd1577cbd126d827a72cb0a15dcbe38a62a8b (patch)
treecdefa81e8266d3198ad9716824addc802a35b6a7 /webkit/appcache/web_application_cache_host_impl.h
parent2febbc7bc136af7212814e3495c135ec9fa98345 (diff)
downloadchromium_src-df4cd1577cbd126d827a72cb0a15dcbe38a62a8b.zip
chromium_src-df4cd1577cbd126d827a72cb0a15dcbe38a62a8b.tar.gz
chromium_src-df4cd1577cbd126d827a72cb0a15dcbe38a62a8b.tar.bz2
AppCache: Output some information to the javascript console.
BUG=13685 TEST=manual Review URL: http://codereview.chromium.org/2805030 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@50796 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'webkit/appcache/web_application_cache_host_impl.h')
-rw-r--r--webkit/appcache/web_application_cache_host_impl.h4
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_;