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

Unified Diff: chrome/renderer/external_host_bindings.h

Issue 25378002: Move the rest of source files from webkit/renderer to content/renderer. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 3 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: 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_;

Powered by Google App Engine
This is Rietveld 408576698