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" | |
8 #include "ipc/ipc_message_macros.h" | 7 #include "ipc/ipc_message_macros.h" |
| 8 #include "ui/gfx/native_widget_types.h" |
9 #include "webkit/glue/webcursor.h" | 9 #include "webkit/glue/webcursor.h" |
10 | 10 |
11 #if defined(OS_POSIX) | 11 #if defined(OS_POSIX) |
12 #include "base/file_descriptor_posix.h" | 12 #include "base/file_descriptor_posix.h" |
13 #endif | 13 #endif |
14 | 14 |
15 #define IPC_MESSAGE_START PluginMsgStart | 15 #define IPC_MESSAGE_START PluginMsgStart |
16 | 16 |
17 //----------------------------------------------------------------------------- | 17 //----------------------------------------------------------------------------- |
18 // PluginProcess messages | 18 // PluginProcess messages |
(...skipping 496 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
515 IPC_SYNC_MESSAGE_ROUTED1_2(NPObjectMsg_Construct, | 515 IPC_SYNC_MESSAGE_ROUTED1_2(NPObjectMsg_Construct, |
516 std::vector<NPVariant_Param> /* args */, | 516 std::vector<NPVariant_Param> /* args */, |
517 NPVariant_Param /* result_param */, | 517 NPVariant_Param /* result_param */, |
518 bool /* result */) | 518 bool /* result */) |
519 | 519 |
520 IPC_SYNC_MESSAGE_ROUTED2_2(NPObjectMsg_Evaluate, | 520 IPC_SYNC_MESSAGE_ROUTED2_2(NPObjectMsg_Evaluate, |
521 std::string /* script */, | 521 std::string /* script */, |
522 bool /* popups_allowed */, | 522 bool /* popups_allowed */, |
523 NPVariant_Param /* result_param */, | 523 NPVariant_Param /* result_param */, |
524 bool /* result */) | 524 bool /* result */) |
OLD | NEW |