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

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

Issue 11772005: Implement a prototype to render cross-site iframes in a separate process from their parent. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Removing Task Manager code and fixing issues raised by Charlie. 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
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 38 matching lines...) Expand 10 before | Expand all | Expand 10 after
49 // Indicates the scale factor of the embedder WebView. 49 // Indicates the scale factor of the embedder WebView.
50 IPC_STRUCT_MEMBER(float, scale_factor) 50 IPC_STRUCT_MEMBER(float, scale_factor)
51 IPC_STRUCT_END() 51 IPC_STRUCT_END()
52 52
53 IPC_STRUCT_BEGIN(BrowserPluginHostMsg_CreateGuest_Params) 53 IPC_STRUCT_BEGIN(BrowserPluginHostMsg_CreateGuest_Params)
54 IPC_STRUCT_MEMBER(std::string, storage_partition_id) 54 IPC_STRUCT_MEMBER(std::string, storage_partition_id)
55 IPC_STRUCT_MEMBER(bool, persist_storage) 55 IPC_STRUCT_MEMBER(bool, persist_storage)
56 IPC_STRUCT_MEMBER(bool, focused) 56 IPC_STRUCT_MEMBER(bool, focused)
57 IPC_STRUCT_MEMBER(bool, visible) 57 IPC_STRUCT_MEMBER(bool, visible)
58 IPC_STRUCT_MEMBER(std::string, name) 58 IPC_STRUCT_MEMBER(std::string, name)
59 IPC_STRUCT_MEMBER(std::string, src)
Charlie Reis 2013/01/18 05:37:07 Note: this is also being added by https://coderevi
nasko 2013/01/18 19:09:42 Done.
59 IPC_STRUCT_MEMBER(BrowserPluginHostMsg_AutoSize_Params, auto_size_params) 60 IPC_STRUCT_MEMBER(BrowserPluginHostMsg_AutoSize_Params, auto_size_params)
60 IPC_STRUCT_MEMBER(BrowserPluginHostMsg_ResizeGuest_Params, 61 IPC_STRUCT_MEMBER(BrowserPluginHostMsg_ResizeGuest_Params,
61 resize_guest_params) 62 resize_guest_params)
62 IPC_STRUCT_END() 63 IPC_STRUCT_END()
63 64
64 IPC_STRUCT_BEGIN(BrowserPluginMsg_LoadCommit_Params) 65 IPC_STRUCT_BEGIN(BrowserPluginMsg_LoadCommit_Params)
65 // The current URL of the guest. 66 // The current URL of the guest.
66 IPC_STRUCT_MEMBER(GURL, url) 67 IPC_STRUCT_MEMBER(GURL, url)
67 // Indicates whether the navigation was on the top-level frame. 68 // Indicates whether the navigation was on the top-level frame.
68 IPC_STRUCT_MEMBER(bool, is_top_level) 69 IPC_STRUCT_MEMBER(bool, is_top_level)
(...skipping 268 matching lines...) Expand 10 before | Expand all | Expand 10 after
337 // Guest renders into an FBO with textures provided by the embedder. 338 // Guest renders into an FBO with textures provided by the embedder.
338 // When HW accelerated buffers are swapped in the guest, the message 339 // When HW accelerated buffers are swapped in the guest, the message
339 // is forwarded to the embedder to notify it of a new texture 340 // is forwarded to the embedder to notify it of a new texture
340 // available for compositing. 341 // available for compositing.
341 IPC_MESSAGE_ROUTED5(BrowserPluginMsg_BuffersSwapped, 342 IPC_MESSAGE_ROUTED5(BrowserPluginMsg_BuffersSwapped,
342 int /* instance_id */, 343 int /* instance_id */,
343 gfx::Size /* size */, 344 gfx::Size /* size */,
344 std::string /* mailbox_name */, 345 std::string /* mailbox_name */,
345 int /* route_id */, 346 int /* route_id */,
346 int /* gpu_host_id */) 347 int /* gpu_host_id */)
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698