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

Side by Side Diff: chrome/common/chrome_browser_plugin_messages.h

Issue 12326168: Move <webview> API to chrome layer (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Merge with ToT Created 7 years, 9 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 // Tells the guest to navigate to an entry |relative_index| away from the
18 // current navigation entry.
19 IPC_MESSAGE_ROUTED1(ChromeBrowserPluginHostMsg_Go,
20 int /* relative_index */)
21
22 // Tell the guest to stop loading.
23 IPC_MESSAGE_ROUTED0(ChromeBrowserPluginHostMsg_Stop)
24
25 // Tell the guest to reload.
26 IPC_MESSAGE_ROUTED0(ChromeBrowserPluginHostMsg_Reload)
27
28 // -----------------------------------------------------------------------------
29
30 // These messages are from the browser process to the embedder.
31
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