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

Unified Diff: chrome/renderer/external_host_bindings.h

Issue 10553010: Rename IPC::Channel and IPC::Sender in src/chrome. (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 | « chrome/renderer/extensions/webstore_bindings.h ('k') | chrome/renderer/external_host_bindings.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/renderer/external_host_bindings.h
diff --git a/chrome/renderer/external_host_bindings.h b/chrome/renderer/external_host_bindings.h
index 6f98925fe83829726e6c6ce6c50e51b3e2b6b0e4..2fcdbb847a164c73414441dc7b916a21e749fcfd 100644
--- a/chrome/renderer/external_host_bindings.h
+++ b/chrome/renderer/external_host_bindings.h
@@ -6,7 +6,7 @@
#define CHROME_RENDERER_EXTERNAL_HOST_BINDINGS_H_
#pragma once
-#include "ipc/ipc_message.h"
+#include "ipc/ipc_sender.h"
#include "webkit/glue/cpp_bound_class.h"
// ExternalHostBindings is the class backing the "externalHost" object
@@ -16,7 +16,7 @@
// postMessage(String message[, String target]);
class ExternalHostBindings : public webkit_glue::CppBoundClass {
public:
- ExternalHostBindings(IPC::Message::Sender* sender, int routing_id);
+ ExternalHostBindings(IPC::Sender* sender, int routing_id);
virtual ~ExternalHostBindings();
// Invokes the registered onmessage handler.
@@ -40,7 +40,7 @@ class ExternalHostBindings : public webkit_glue::CppBoundClass {
webkit_glue::CppVariant on_message_handler_;
WebKit::WebFrame* frame_;
- IPC::Message::Sender* sender_;
+ IPC::Sender* sender_;
int routing_id_;
DISALLOW_COPY_AND_ASSIGN(ExternalHostBindings);
« no previous file with comments | « chrome/renderer/extensions/webstore_bindings.h ('k') | chrome/renderer/external_host_bindings.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698