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

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

Issue 422343004: Browser Plugin: Remove embedder_frame_url (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years, 4 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
« no previous file with comments | « no previous file | content/renderer/browser_plugin/browser_plugin.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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/process.h" 10 #include "base/process/process.h"
(...skipping 42 matching lines...) Expand 10 before | Expand all | Expand 10 after
53 // Indicates a request for a full repaint of the page. 53 // Indicates a request for a full repaint of the page.
54 // This is required for switching from compositing to the software 54 // This is required for switching from compositing to the software
55 // rendering path. 55 // rendering path.
56 IPC_STRUCT_MEMBER(bool, repaint) 56 IPC_STRUCT_MEMBER(bool, repaint)
57 IPC_STRUCT_END() 57 IPC_STRUCT_END()
58 58
59 IPC_STRUCT_BEGIN(BrowserPluginHostMsg_Attach_Params) 59 IPC_STRUCT_BEGIN(BrowserPluginHostMsg_Attach_Params)
60 IPC_STRUCT_MEMBER(bool, focused) 60 IPC_STRUCT_MEMBER(bool, focused)
61 IPC_STRUCT_MEMBER(bool, visible) 61 IPC_STRUCT_MEMBER(bool, visible)
62 IPC_STRUCT_MEMBER(bool, opaque) 62 IPC_STRUCT_MEMBER(bool, opaque)
63 IPC_STRUCT_MEMBER(GURL, embedder_frame_url)
64 IPC_STRUCT_MEMBER(BrowserPluginHostMsg_AutoSize_Params, auto_size_params) 63 IPC_STRUCT_MEMBER(BrowserPluginHostMsg_AutoSize_Params, auto_size_params)
65 IPC_STRUCT_MEMBER(BrowserPluginHostMsg_ResizeGuest_Params, 64 IPC_STRUCT_MEMBER(BrowserPluginHostMsg_ResizeGuest_Params,
66 resize_guest_params) 65 resize_guest_params)
67 IPC_STRUCT_MEMBER(gfx::Point, origin) 66 IPC_STRUCT_MEMBER(gfx::Point, origin)
68 IPC_STRUCT_END() 67 IPC_STRUCT_END()
69 68
70 IPC_STRUCT_BEGIN(BrowserPluginMsg_UpdateRect_Params) 69 IPC_STRUCT_BEGIN(BrowserPluginMsg_UpdateRect_Params)
71 // The size of the RenderView when this message was generated. This is 70 // The size of the RenderView when this message was generated. This is
72 // included so the host knows how large the view is from the perspective of 71 // included so the host knows how large the view is from the perspective of
73 // the renderer process. This is necessary in case a resize operation is in 72 // the renderer process. This is necessary in case a resize operation is in
(...skipping 203 matching lines...) Expand 10 before | Expand all | Expand 10 after
277 // See comment about BrowserPluginMsg_BuffersSwapped and 276 // See comment about BrowserPluginMsg_BuffersSwapped and
278 // BrowserPluginMsg_CompositorFrameSwapped for how these related 277 // BrowserPluginMsg_CompositorFrameSwapped for how these related
279 // to the FrameHostMsg variants. 278 // to the FrameHostMsg variants.
280 IPC_MESSAGE_ROUTED1(BrowserPluginHostMsg_BuffersSwappedACK, 279 IPC_MESSAGE_ROUTED1(BrowserPluginHostMsg_BuffersSwappedACK,
281 FrameHostMsg_BuffersSwappedACK_Params /* params */) 280 FrameHostMsg_BuffersSwappedACK_Params /* params */)
282 281
283 // Acknowledge that we presented an ubercomp frame. 282 // Acknowledge that we presented an ubercomp frame.
284 IPC_MESSAGE_ROUTED2(BrowserPluginHostMsg_CompositorFrameSwappedACK, 283 IPC_MESSAGE_ROUTED2(BrowserPluginHostMsg_CompositorFrameSwappedACK,
285 int /* instance_id */, 284 int /* instance_id */,
286 FrameHostMsg_CompositorFrameSwappedACK_Params /* params */) 285 FrameHostMsg_CompositorFrameSwappedACK_Params /* params */)
OLDNEW
« no previous file with comments | « no previous file | content/renderer/browser_plugin/browser_plugin.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698