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

Side by Side 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 7 years, 11 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 unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « chrome/chrome_renderer.gypi ('k') | chrome/common/common_message_generator.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4
5 // Multiply-included message header, no traditional include guard.
6
7 #include "base/values.h"
8 #include "ipc/ipc_message_macros.h"
9
10 #define IPC_MESSAGE_START ChromeBrowserPluginMsgStart
11
12 // Browser plugin messages
13
14 // -----------------------------------------------------------------------------
15 // These messages are from the embedder to the browser process.
16
17 IPC_MESSAGE_ROUTED3(ChromeBrowserPluginHostMsg_ExecuteScript,
18 int /* instance_id */,
19 int /* request_id */,
20 base::ListValue /* args */)
21
22 // -----------------------------------------------------------------------------
23
24 // These messages are from the browser process to the embedder.
25
26 IPC_MESSAGE_ROUTED3(ChromeBrowserPluginHostMsg_ExecuteScript_Response,
27 int /* instance_id */,
28 int /* request_id */,
29 base::ListValue /* result */)
OLDNEW
« 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