summaryrefslogtreecommitdiffstats
path: root/content/renderer/renderer_webapplicationcachehost_impl.h
diff options
context:
space:
mode:
authorjam@chromium.org <jam@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2011-10-10 19:06:28 +0000
committerjam@chromium.org <jam@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2011-10-10 19:06:28 +0000
commit310ebd630b77e0f3883647ebcf7458b2010f0a51 (patch)
tree5cee3d0f4ac357c57263b4f7407d240700948010 /content/renderer/renderer_webapplicationcachehost_impl.h
parent0c49552feeb890c8ea1f2f7f85bc249e9808a815 (diff)
downloadchromium_src-310ebd630b77e0f3883647ebcf7458b2010f0a51.zip
chromium_src-310ebd630b77e0f3883647ebcf7458b2010f0a51.tar.gz
chromium_src-310ebd630b77e0f3883647ebcf7458b2010f0a51.tar.bz2
Rename RenderView to RenderViewImpl. Update Chrome's DEPS so that it can't include the RenderView implementation.
BUG=98716 Review URL: http://codereview.chromium.org/8220006 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@104754 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'content/renderer/renderer_webapplicationcachehost_impl.h')
-rw-r--r--content/renderer/renderer_webapplicationcachehost_impl.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/content/renderer/renderer_webapplicationcachehost_impl.h b/content/renderer/renderer_webapplicationcachehost_impl.h
index 9727315..4b434a9 100644
--- a/content/renderer/renderer_webapplicationcachehost_impl.h
+++ b/content/renderer/renderer_webapplicationcachehost_impl.h
@@ -8,13 +8,13 @@
#include "webkit/appcache/web_application_cache_host_impl.h"
-class RenderView;
+class RenderViewImpl;
class RendererWebApplicationCacheHostImpl
: public appcache::WebApplicationCacheHostImpl {
public:
RendererWebApplicationCacheHostImpl(
- RenderView* render_view,
+ RenderViewImpl* render_view,
WebKit::WebApplicationCacheHostClient* client,
appcache::AppCacheBackend* backend);
@@ -25,7 +25,7 @@ class RendererWebApplicationCacheHostImpl
virtual void OnCacheSelected(const appcache::AppCacheInfo& info);
private:
- RenderView* GetRenderView();
+ RenderViewImpl* GetRenderView();
bool content_blocked_;
int routing_id_;