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

Unified Diff: chrome/common/chrome_browser_plugin_messages.h

Issue 11693009: Browser Plugin: Implement ExecuteScript (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 8 years 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/chrome_renderer.gypi ('k') | chrome/common/common_message_generator.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/common/chrome_browser_plugin_messages.h
diff --git a/chrome/common/chrome_browser_plugin_messages.h b/chrome/common/chrome_browser_plugin_messages.h
new file mode 100644
index 0000000000000000000000000000000000000000..c2d068fe26d9160c89b7a79e95f10ba99980d56b
--- /dev/null
+++ b/chrome/common/chrome_browser_plugin_messages.h
@@ -0,0 +1,29 @@
+// Copyright (c) 2012 The Chromium Authors. All rights reserved.
+// Use of this source code is governed by a BSD-style license that can be
+// found in the LICENSE file.
+
+// Multiply-included message header, no traditional include guard.
+
+#include "base/values.h"
+#include "ipc/ipc_message_macros.h"
+
+#define IPC_MESSAGE_START ChromeBrowserPluginMsgStart
+
+// Browser plugin messages
+
+// -----------------------------------------------------------------------------
+// These messages are from the embedder to the browser process.
+
+IPC_MESSAGE_ROUTED3(ChromeBrowserPluginHostMsg_ExecuteScript,
+ int /* instance_id */,
+ int /* request_id */,
+ base::ListValue /* args */)
+
+// -----------------------------------------------------------------------------
+
+// These messages are from the browser process to the embedder.
+
+IPC_MESSAGE_ROUTED3(ChromeBrowserPluginHostMsg_ExecuteScript_Response,
+ int /* instance_id */,
+ int /* request_id */,
+ base::ListValue /* result */)
« no previous file with comments | « chrome/chrome_renderer.gypi ('k') | chrome/common/common_message_generator.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698