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

Side by Side Diff: content/common/browser_plugin_messages.h

Issue 10544143: Browser Plugin: Plumbing to enable tabbing out of a browser tag (Closed) Base URL: http://git.chromium.org/git/chromium.git@trunk
Patch Set: Created 8 years, 6 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
OLDNEW
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 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 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 // Multiply-included message header, no traditional include guard. 5 // Multiply-included message header, no traditional include guard.
6 6
7 #include <string> 7 #include <string>
8 8
9 #include "base/basictypes.h" 9 #include "base/basictypes.h"
10 #include "base/process.h" 10 #include "base/process.h"
(...skipping 64 matching lines...) Expand 10 before | Expand all | Expand 10 after
75 75
76 IPC_MESSAGE_ROUTED2(BrowserPluginHostMsg_NavigateFromGuest, 76 IPC_MESSAGE_ROUTED2(BrowserPluginHostMsg_NavigateFromGuest,
77 PP_Instance /* instance */, 77 PP_Instance /* instance */,
78 std::string /* src */) 78 std::string /* src */)
79 79
80 // ----------------------------------------------------------------------------- 80 // -----------------------------------------------------------------------------
81 // These messages are from the browser process to the embedder. 81 // These messages are from the browser process to the embedder.
82 82
83 // A guest instance is ready to be placed. 83 // A guest instance is ready to be placed.
84 IPC_MESSAGE_CONTROL3(BrowserPluginMsg_LoadGuest, 84 IPC_MESSAGE_CONTROL3(BrowserPluginMsg_LoadGuest,
85 int /* instance id */, 85 int /* instance_id */,
86 int /* guest_process_id */, 86 int /* guest_process_id */,
87 IPC::ChannelHandle /* channel_handle */) 87 IPC::ChannelHandle /* channel_handle */)
88 88
89 IPC_MESSAGE_CONTROL2(BrowserPluginMsg_AdvanceFocus,
90 int /* instance_id */,
91 bool /* reverse */)
92
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698