Index: chrome/renderer/external_host_bindings.h |
diff --git a/chrome/renderer/external_host_bindings.h b/chrome/renderer/external_host_bindings.h |
index 170987f3c4beb9c06d58d66e514f9639bf7bf4ac..04c16f2160cd3fe14cdfbc88a4671f065c54a915 100644 |
--- a/chrome/renderer/external_host_bindings.h |
+++ b/chrome/renderer/external_host_bindings.h |
@@ -5,15 +5,15 @@ |
#ifndef CHROME_RENDERER_EXTERNAL_HOST_BINDINGS_H_ |
#define CHROME_RENDERER_EXTERNAL_HOST_BINDINGS_H_ |
+#include "content/renderer/cpp_bound_class.h" |
#include "ipc/ipc_sender.h" |
-#include "webkit/renderer/cpp_bound_class.h" |
// ExternalHostBindings is the class backing the "externalHost" object |
// accessible from Javascript |
// |
// We expose one function, for sending a message to the external host: |
// postMessage(String message[, String target]); |
-class ExternalHostBindings : public webkit_glue::CppBoundClass { |
+class ExternalHostBindings : public content::CppBoundClass { |
public: |
ExternalHostBindings(IPC::Sender* sender, int routing_id); |
virtual ~ExternalHostBindings(); |
@@ -34,10 +34,10 @@ class ExternalHostBindings : public webkit_glue::CppBoundClass { |
bool CreateMessageEvent(NPObject** message_event); |
// The postMessage() function provided to Javascript. |
- void PostMessage(const webkit_glue::CppArgumentList& args, |
- webkit_glue::CppVariant* result); |
+ void PostMessage(const content::CppArgumentList& args, |
+ content::CppVariant* result); |
- webkit_glue::CppVariant on_message_handler_; |
+ content::CppVariant on_message_handler_; |
WebKit::WebFrame* frame_; |
IPC::Sender* sender_; |
int routing_id_; |