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

Unified Diff: content/browser/appcache/appcache_frontend_proxy.h

Issue 10662005: Use IPC::Sender and IPC::Listener in content. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 8 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
« no previous file with comments | « no previous file | content/browser/appcache/appcache_frontend_proxy.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/browser/appcache/appcache_frontend_proxy.h
diff --git a/content/browser/appcache/appcache_frontend_proxy.h b/content/browser/appcache/appcache_frontend_proxy.h
index 03592ee4c45a2f0c4587404b711af4ff8784734f..d16a8f04cd298a4521a17a42fd2a67143d02fa96 100644
--- a/content/browser/appcache/appcache_frontend_proxy.h
+++ b/content/browser/appcache/appcache_frontend_proxy.h
@@ -9,13 +9,13 @@
#include <string>
#include <vector>
-#include "ipc/ipc_message.h"
+#include "ipc/ipc_sender.h"
#include "webkit/appcache/appcache_interfaces.h"
// Sends appcache related messages to a child process.
class AppCacheFrontendProxy : public appcache::AppCacheFrontend {
public:
- explicit AppCacheFrontendProxy(IPC::Message::Sender* sender);
+ explicit AppCacheFrontendProxy(IPC::Sender* sender);
// AppCacheFrontend methods
virtual void OnCacheSelected(int host_id,
@@ -35,7 +35,7 @@ class AppCacheFrontendProxy : public appcache::AppCacheFrontend {
const GURL& manifest_url) OVERRIDE;
private:
- IPC::Message::Sender* sender_;
+ IPC::Sender* sender_;
};
#endif // CONTENT_BROWSER_APPCACHE_APPCACHE_FRONTEND_PROXY_H_
« no previous file with comments | « no previous file | content/browser/appcache/appcache_frontend_proxy.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698