summaryrefslogtreecommitdiffstats
path: root/content/renderer
diff options
context:
space:
mode:
authorpilgrim@chromium.org <pilgrim@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2014-06-25 20:57:55 +0000
committerpilgrim@chromium.org <pilgrim@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2014-06-25 20:57:55 +0000
commit98d6d4562142f682d3bc8419c0f29a4f7fd0f263 (patch)
tree005b061e143cefc1d2c890a700b28edb57b8573d /content/renderer
parent0282b03c86d52533c58af2c6e8de4c7bc7a89155 (diff)
downloadchromium_src-98d6d4562142f682d3bc8419c0f29a4f7fd0f263.zip
chromium_src-98d6d4562142f682d3bc8419c0f29a4f7fd0f263.tar.gz
chromium_src-98d6d4562142f682d3bc8419c0f29a4f7fd0f263.tar.bz2
Move all remaining appcache-related code to content namespace
This introduces NO FUNCTIONAL CHANGES. It is strictly a file move and namespace change. BUG=338338 R=michaeln@chromium.org TBR=cevans, darin Review URL: https://codereview.chromium.org/344493002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@279808 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'content/renderer')
-rw-r--r--content/renderer/renderer_webapplicationcachehost_impl.cc5
-rw-r--r--content/renderer/renderer_webapplicationcachehost_impl.h6
2 files changed, 5 insertions, 6 deletions
diff --git a/content/renderer/renderer_webapplicationcachehost_impl.cc b/content/renderer/renderer_webapplicationcachehost_impl.cc
index 5b781d4..42aae61 100644
--- a/content/renderer/renderer_webapplicationcachehost_impl.cc
+++ b/content/renderer/renderer_webapplicationcachehost_impl.cc
@@ -10,7 +10,6 @@
#include "third_party/WebKit/public/web/WebFrame.h"
#include "third_party/WebKit/public/web/WebView.h"
-using appcache::AppCacheBackend;
using blink::WebApplicationCacheHostClient;
using blink::WebConsoleMessage;
@@ -25,7 +24,7 @@ RendererWebApplicationCacheHostImpl::RendererWebApplicationCacheHostImpl(
}
void RendererWebApplicationCacheHostImpl::OnLogMessage(
- appcache::AppCacheLogLevel log_level, const std::string& message) {
+ AppCacheLogLevel log_level, const std::string& message) {
if (RenderThreadImpl::current()->layout_test_mode())
return;
@@ -47,7 +46,7 @@ void RendererWebApplicationCacheHostImpl::OnContentBlocked(
}
void RendererWebApplicationCacheHostImpl::OnCacheSelected(
- const appcache::AppCacheInfo& info) {
+ const AppCacheInfo& info) {
if (!info.manifest_url.is_empty()) {
RenderThreadImpl::current()->Send(new ViewHostMsg_AppCacheAccessed(
routing_id_, info.manifest_url, false));
diff --git a/content/renderer/renderer_webapplicationcachehost_impl.h b/content/renderer/renderer_webapplicationcachehost_impl.h
index e7b2bc8..a752c08 100644
--- a/content/renderer/renderer_webapplicationcachehost_impl.h
+++ b/content/renderer/renderer_webapplicationcachehost_impl.h
@@ -15,13 +15,13 @@ class RendererWebApplicationCacheHostImpl : public WebApplicationCacheHostImpl {
RendererWebApplicationCacheHostImpl(
RenderViewImpl* render_view,
blink::WebApplicationCacheHostClient* client,
- appcache::AppCacheBackend* backend);
+ AppCacheBackend* backend);
// WebApplicationCacheHostImpl:
- virtual void OnLogMessage(appcache::AppCacheLogLevel log_level,
+ virtual void OnLogMessage(AppCacheLogLevel log_level,
const std::string& message) OVERRIDE;
virtual void OnContentBlocked(const GURL& manifest_url) OVERRIDE;
- virtual void OnCacheSelected(const appcache::AppCacheInfo& info) OVERRIDE;
+ virtual void OnCacheSelected(const AppCacheInfo& info) OVERRIDE;
private:
RenderViewImpl* GetRenderView();