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

Side by Side Diff: extensions/common/guest_view/guest_view_messages.h

Issue 1102173002: Move GuestView layer in browser to components (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Addressed Jochen's comment + GuestViewBase cleanup Created 5 years, 7 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
OLDNEW
(Empty)
1 // Copyright 2015 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 // IPC messages for GuestViews.
6 // Multiply-included message file, hence no include guard.
7
8 #include "base/values.h"
9 #include "ipc/ipc_message_macros.h"
10
11 #define IPC_MESSAGE_START GuestViewMsgStart
12
13 // Messages sent from the browser to the renderer.
14
15 // Once a RenderView proxy has been created for the guest in the embedder render
16 // process, this IPC informs the embedder of the proxy's routing ID.
17 IPC_MESSAGE_CONTROL2(GuestViewMsg_GuestAttached,
18 int /* element_instance_id */,
19 int /* source_routing_id */)
20
21 // This IPC tells the browser process to detach the provided
22 // |element_instance_id| from a GuestViewBase if it is attached to one.
23 // In other words, routing of input and graphics will no longer flow through
24 // the container associated with the provided ID.
25 IPC_MESSAGE_CONTROL1(GuestViewMsg_GuestDetached,
26 int /* element_instance_id*/)
27
28 // Messages sent from the renderer to the browser.
29
30 // Sent by the renderer to set initialization parameters of a Browser Plugin
31 // that is identified by |element_instance_id|.
32 IPC_MESSAGE_CONTROL3(GuestViewHostMsg_AttachGuest,
33 int /* element_instance_id */,
34 int /* guest_instance_id */,
35 base::DictionaryValue /* attach_params */)
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698