diff options
author | michaeln@chromium.org <michaeln@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-06-25 00:46:02 +0000 |
---|---|---|
committer | michaeln@chromium.org <michaeln@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-06-25 00:46:02 +0000 |
commit | df4cd1577cbd126d827a72cb0a15dcbe38a62a8b (patch) | |
tree | cdefa81e8266d3198ad9716824addc802a35b6a7 /chrome/renderer/renderer_webapplicationcachehost_impl.h | |
parent | 2febbc7bc136af7212814e3495c135ec9fa98345 (diff) | |
download | chromium_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 'chrome/renderer/renderer_webapplicationcachehost_impl.h')
-rw-r--r-- | chrome/renderer/renderer_webapplicationcachehost_impl.h | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/chrome/renderer/renderer_webapplicationcachehost_impl.h b/chrome/renderer/renderer_webapplicationcachehost_impl.h index 8a00032..0e4173e 100644 --- a/chrome/renderer/renderer_webapplicationcachehost_impl.h +++ b/chrome/renderer/renderer_webapplicationcachehost_impl.h @@ -17,14 +17,15 @@ class RendererWebApplicationCacheHostImpl WebKit::WebApplicationCacheHostClient* client, appcache::AppCacheBackend* backend); - virtual ~RendererWebApplicationCacheHostImpl(); - // appcache::WebApplicationCacheHostImpl methods. + virtual void OnLogMessage(appcache::LogLevel log_level, + const std::string& message); virtual void OnContentBlocked(); private: - bool content_blocked_; + RenderView* GetRenderView(); + bool content_blocked_; int routing_id_; }; |