Chromium Code Reviews| OLD | NEW |
|---|---|
| 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/memory/shared_memory.h" | 10 #include "base/memory/shared_memory.h" |
| (...skipping 51 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 62 IPC_STRUCT_MEMBER(bool, repaint) | 62 IPC_STRUCT_MEMBER(bool, repaint) |
| 63 IPC_STRUCT_END() | 63 IPC_STRUCT_END() |
| 64 | 64 |
| 65 IPC_STRUCT_BEGIN(BrowserPluginHostMsg_Attach_Params) | 65 IPC_STRUCT_BEGIN(BrowserPluginHostMsg_Attach_Params) |
| 66 IPC_STRUCT_MEMBER(std::string, storage_partition_id) | 66 IPC_STRUCT_MEMBER(std::string, storage_partition_id) |
| 67 IPC_STRUCT_MEMBER(bool, persist_storage) | 67 IPC_STRUCT_MEMBER(bool, persist_storage) |
| 68 IPC_STRUCT_MEMBER(bool, focused) | 68 IPC_STRUCT_MEMBER(bool, focused) |
| 69 IPC_STRUCT_MEMBER(bool, visible) | 69 IPC_STRUCT_MEMBER(bool, visible) |
| 70 IPC_STRUCT_MEMBER(std::string, name) | 70 IPC_STRUCT_MEMBER(std::string, name) |
| 71 IPC_STRUCT_MEMBER(std::string, src) | 71 IPC_STRUCT_MEMBER(std::string, src) |
| 72 IPC_STRUCT_MEMBER(std::string, embedder_frame_url) | |
|
Charlie Reis
2013/09/13 21:17:24
Please use GURL for urls. (I'm not certain, but I
guohui
2013/09/16 22:27:02
Done.
| |
| 72 IPC_STRUCT_MEMBER(BrowserPluginHostMsg_AutoSize_Params, auto_size_params) | 73 IPC_STRUCT_MEMBER(BrowserPluginHostMsg_AutoSize_Params, auto_size_params) |
| 73 IPC_STRUCT_MEMBER(BrowserPluginHostMsg_ResizeGuest_Params, | 74 IPC_STRUCT_MEMBER(BrowserPluginHostMsg_ResizeGuest_Params, |
| 74 resize_guest_params) | 75 resize_guest_params) |
| 75 IPC_STRUCT_END() | 76 IPC_STRUCT_END() |
| 76 | 77 |
| 77 IPC_STRUCT_BEGIN(BrowserPluginMsg_Attach_ACK_Params) | 78 IPC_STRUCT_BEGIN(BrowserPluginMsg_Attach_ACK_Params) |
| 78 IPC_STRUCT_MEMBER(std::string, storage_partition_id) | 79 IPC_STRUCT_MEMBER(std::string, storage_partition_id) |
| 79 IPC_STRUCT_MEMBER(bool, persist_storage) | 80 IPC_STRUCT_MEMBER(bool, persist_storage) |
| 80 IPC_STRUCT_MEMBER(std::string, name) | 81 IPC_STRUCT_MEMBER(std::string, name) |
| 81 IPC_STRUCT_END() | 82 IPC_STRUCT_END() |
| (...skipping 265 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 347 cc::CompositorFrame /* frame */, | 348 cc::CompositorFrame /* frame */, |
| 348 int /* route_id */, | 349 int /* route_id */, |
| 349 uint32 /* output_surface_id */, | 350 uint32 /* output_surface_id */, |
| 350 int /* renderer_host_id */) | 351 int /* renderer_host_id */) |
| 351 | 352 |
| 352 // Forwards a PointerLock Unlock request to the BrowserPlugin. | 353 // Forwards a PointerLock Unlock request to the BrowserPlugin. |
| 353 IPC_MESSAGE_CONTROL2(BrowserPluginMsg_SetMouseLock, | 354 IPC_MESSAGE_CONTROL2(BrowserPluginMsg_SetMouseLock, |
| 354 int /* instance_id */, | 355 int /* instance_id */, |
| 355 bool /* enable */) | 356 bool /* enable */) |
| 356 | 357 |
| OLD | NEW |