OLD | NEW |
1 // Copyright (c) 2009 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2009 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 #include "base/shared_memory.h" | 5 #include "base/shared_memory.h" |
6 #include "build/build_config.h" | 6 #include "build/build_config.h" |
7 #include "gfx/native_widget_types.h" | 7 #include "gfx/native_widget_types.h" |
8 #include "ipc/ipc_message_macros.h" | 8 #include "ipc/ipc_message_macros.h" |
9 #include "webkit/glue/webcursor.h" | 9 #include "webkit/glue/webcursor.h" |
10 | 10 |
(...skipping 287 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
298 | 298 |
299 #if defined(OS_MACOSX) | 299 #if defined(OS_MACOSX) |
300 // This message, used only on 10.6 and later, transmits the "fake" | 300 // This message, used only on 10.6 and later, transmits the "fake" |
301 // window handle allocated by the browser on behalf of the renderer | 301 // window handle allocated by the browser on behalf of the renderer |
302 // to the GPU plugin. | 302 // to the GPU plugin. |
303 IPC_MESSAGE_ROUTED1(PluginMsg_SetFakeAcceleratedSurfaceWindowHandle, | 303 IPC_MESSAGE_ROUTED1(PluginMsg_SetFakeAcceleratedSurfaceWindowHandle, |
304 gfx::PluginWindowHandle /* window */) | 304 gfx::PluginWindowHandle /* window */) |
305 #endif | 305 #endif |
306 | 306 |
307 IPC_MESSAGE_CONTROL3(PluginMsg_ClearSiteData, | 307 IPC_MESSAGE_CONTROL3(PluginMsg_ClearSiteData, |
| 308 std::string, /* site */ |
308 uint64, /* flags */ | 309 uint64, /* flags */ |
309 std::string, /* domain */ | |
310 base::Time /* begin_time */) | 310 base::Time /* begin_time */) |
311 | 311 |
312 | 312 |
313 //----------------------------------------------------------------------------- | 313 //----------------------------------------------------------------------------- |
314 // PluginHost messages | 314 // PluginHost messages |
315 // These are messages sent from the plugin process to the renderer process. | 315 // These are messages sent from the plugin process to the renderer process. |
316 // They all map to the corresponding WebPlugin methods. | 316 // They all map to the corresponding WebPlugin methods. |
317 // Sends the plugin window information to the renderer. | 317 // Sends the plugin window information to the renderer. |
318 // The window parameter is a handle to the window if the plugin is a windowed | 318 // The window parameter is a handle to the window if the plugin is a windowed |
319 // plugin. It is NULL for windowless plugins. | 319 // plugin. It is NULL for windowless plugins. |
(...skipping 193 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
513 IPC_SYNC_MESSAGE_ROUTED1_2(NPObjectMsg_Construct, | 513 IPC_SYNC_MESSAGE_ROUTED1_2(NPObjectMsg_Construct, |
514 std::vector<NPVariant_Param> /* args */, | 514 std::vector<NPVariant_Param> /* args */, |
515 NPVariant_Param /* result_param */, | 515 NPVariant_Param /* result_param */, |
516 bool /* result */) | 516 bool /* result */) |
517 | 517 |
518 IPC_SYNC_MESSAGE_ROUTED2_2(NPObjectMsg_Evaluate, | 518 IPC_SYNC_MESSAGE_ROUTED2_2(NPObjectMsg_Evaluate, |
519 std::string /* script */, | 519 std::string /* script */, |
520 bool /* popups_allowed */, | 520 bool /* popups_allowed */, |
521 NPVariant_Param /* result_param */, | 521 NPVariant_Param /* result_param */, |
522 bool /* result */) | 522 bool /* result */) |
OLD | NEW |