Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(849)

Unified Diff: content/child/appcache/appcache_backend_proxy.h

Issue 344493002: Move all remaining appcache-related code to content namespace (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: rebase Created 6 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: content/child/appcache/appcache_backend_proxy.h
diff --git a/content/child/appcache/appcache_backend_proxy.h b/content/child/appcache/appcache_backend_proxy.h
index 389f08c6a9d5fe8058292379d5103b789bb40dfa..98eed36942869830ec827e6438bcacf2348d8da8 100644
--- a/content/child/appcache/appcache_backend_proxy.h
+++ b/content/child/appcache/appcache_backend_proxy.h
@@ -7,13 +7,13 @@
#include <vector>
+#include "content/common/appcache_interfaces.h"
#include "ipc/ipc_sender.h"
-#include "webkit/common/appcache/appcache_interfaces.h"
namespace content {
// Sends appcache related messages to the main process.
-class AppCacheBackendProxy : public appcache::AppCacheBackend {
+class AppCacheBackendProxy : public AppCacheBackend {
public:
explicit AppCacheBackendProxy(IPC::Sender* sender) : sender_(sender) {}
@@ -38,12 +38,12 @@ class AppCacheBackendProxy : public appcache::AppCacheBackend {
int host_id,
const GURL& document_url,
int64 cache_document_was_loaded_from) OVERRIDE;
- virtual appcache::AppCacheStatus GetStatus(int host_id) OVERRIDE;
+ virtual AppCacheStatus GetStatus(int host_id) OVERRIDE;
virtual bool StartUpdate(int host_id) OVERRIDE;
virtual bool SwapCache(int host_id) OVERRIDE;
virtual void GetResourceList(
int host_id,
- std::vector<appcache::AppCacheResourceInfo>* resource_infos) OVERRIDE;
+ std::vector<AppCacheResourceInfo>* resource_infos) OVERRIDE;
private:
IPC::Sender* sender_;

Powered by Google App Engine
This is Rietveld 408576698