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

Unified Diff: content/child/appcache/appcache_dispatcher.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_dispatcher.h
diff --git a/content/child/appcache/appcache_dispatcher.h b/content/child/appcache/appcache_dispatcher.h
index 6b627279d3225c39d7493a61f32047c2934976b5..82f4711a6753533cb5aebf10033ca6afd22d12e2 100644
--- a/content/child/appcache/appcache_dispatcher.h
+++ b/content/child/appcache/appcache_dispatcher.h
@@ -10,8 +10,8 @@
#include "base/memory/scoped_ptr.h"
#include "content/child/appcache/appcache_backend_proxy.h"
+#include "content/common/appcache_interfaces.h"
#include "ipc/ipc_listener.h"
-#include "webkit/common/appcache/appcache_interfaces.h"
namespace content {
@@ -22,7 +22,7 @@ namespace content {
class AppCacheDispatcher : public IPC::Listener {
public:
AppCacheDispatcher(IPC::Sender* sender,
- appcache::AppCacheFrontend* frontend);
+ AppCacheFrontend* frontend);
virtual ~AppCacheDispatcher();
AppCacheBackendProxy* backend_proxy() { return &backend_proxy_; }
@@ -32,20 +32,20 @@ class AppCacheDispatcher : public IPC::Listener {
private:
// Ipc message handlers
- void OnCacheSelected(int host_id, const appcache::AppCacheInfo& info);
+ void OnCacheSelected(int host_id, const AppCacheInfo& info);
void OnStatusChanged(const std::vector<int>& host_ids,
- appcache::AppCacheStatus status);
+ AppCacheStatus status);
void OnEventRaised(const std::vector<int>& host_ids,
- appcache::AppCacheEventID event_id);
+ AppCacheEventID event_id);
void OnProgressEventRaised(const std::vector<int>& host_ids,
const GURL& url, int num_total, int num_complete);
void OnErrorEventRaised(const std::vector<int>& host_ids,
- const appcache::AppCacheErrorDetails& details);
+ const AppCacheErrorDetails& details);
void OnLogMessage(int host_id, int log_level, const std::string& message);
void OnContentBlocked(int host_id, const GURL& manifest_url);
AppCacheBackendProxy backend_proxy_;
- scoped_ptr<appcache::AppCacheFrontend> frontend_;
+ scoped_ptr<AppCacheFrontend> frontend_;
};
} // namespace content

Powered by Google App Engine
This is Rietveld 408576698