| 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/gfx/native_widget_types.h" | 5 #include "base/gfx/native_widget_types.h" |
| 6 #include "base/shared_memory.h" | 6 #include "base/shared_memory.h" |
| 7 #include "build/build_config.h" | 7 #include "build/build_config.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 165 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 176 | 176 |
| 177 IPC_SYNC_MESSAGE_ROUTED1_2(PluginMsg_HandleInputEvent, | 177 IPC_SYNC_MESSAGE_ROUTED1_2(PluginMsg_HandleInputEvent, |
| 178 IPC::WebInputEventPointer /* event */, | 178 IPC::WebInputEventPointer /* event */, |
| 179 bool /* handled */, | 179 bool /* handled */, |
| 180 WebCursor /* cursor type*/) | 180 WebCursor /* cursor type*/) |
| 181 | 181 |
| 182 IPC_SYNC_MESSAGE_ROUTED2_0(PluginMsg_WillSendRequest, | 182 IPC_SYNC_MESSAGE_ROUTED2_0(PluginMsg_WillSendRequest, |
| 183 int /* id */, | 183 int /* id */, |
| 184 GURL /* url */) | 184 GURL /* url */) |
| 185 | 185 |
| 186 IPC_SYNC_MESSAGE_ROUTED1_1(PluginMsg_DidReceiveResponse, | 186 IPC_MESSAGE_ROUTED1(PluginMsg_DidReceiveResponse, |
| 187 PluginMsg_DidReceiveResponseParams, | 187 PluginMsg_DidReceiveResponseParams) |
| 188 bool /* cancel */) | |
| 189 | 188 |
| 190 IPC_SYNC_MESSAGE_ROUTED3_0(PluginMsg_DidReceiveData, | 189 IPC_MESSAGE_ROUTED3(PluginMsg_DidReceiveData, |
| 191 int /* id */, | 190 int /* id */, |
| 192 std::vector<char> /* buffer */, | 191 std::vector<char> /* buffer */, |
| 193 int /* data_offset */) | 192 int /* data_offset */) |
| 194 | 193 |
| 195 IPC_SYNC_MESSAGE_ROUTED1_0(PluginMsg_DidFinishLoading, | 194 IPC_MESSAGE_ROUTED1(PluginMsg_DidFinishLoading, |
| 196 int /* id */) | 195 int /* id */) |
| 197 | 196 |
| 198 IPC_SYNC_MESSAGE_ROUTED1_0(PluginMsg_DidFail, | 197 IPC_MESSAGE_ROUTED1(PluginMsg_DidFail, |
| 199 int /* id */) | 198 int /* id */) |
| 200 | 199 |
| 201 IPC_MESSAGE_ROUTED5(PluginMsg_SendJavaScriptStream, | 200 IPC_MESSAGE_ROUTED5(PluginMsg_SendJavaScriptStream, |
| 202 std::string /* url */, | 201 std::string /* url */, |
| 203 std::wstring /* result */, | 202 std::wstring /* result */, |
| 204 bool /* success */, | 203 bool /* success */, |
| 205 bool /* notify required */, | 204 bool /* notify required */, |
| 206 intptr_t /* notify data */) | 205 intptr_t /* notify data */) |
| 207 | 206 |
| 208 IPC_MESSAGE_ROUTED2(PluginMsg_DidReceiveManualResponse, | 207 IPC_MESSAGE_ROUTED2(PluginMsg_DidReceiveManualResponse, |
| 209 std::string /* url */, | 208 std::string /* url */, |
| (...skipping 164 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 374 IPC_SYNC_MESSAGE_ROUTED2_2(NPObjectMsg_Evaluate, | 373 IPC_SYNC_MESSAGE_ROUTED2_2(NPObjectMsg_Evaluate, |
| 375 std::string /* script */, | 374 std::string /* script */, |
| 376 bool /* popups_allowed */, | 375 bool /* popups_allowed */, |
| 377 NPVariant_Param /* result_param */, | 376 NPVariant_Param /* result_param */, |
| 378 bool /* result */) | 377 bool /* result */) |
| 379 | 378 |
| 380 IPC_SYNC_MESSAGE_ROUTED1_0(NPObjectMsg_SetException, | 379 IPC_SYNC_MESSAGE_ROUTED1_0(NPObjectMsg_SetException, |
| 381 std::string /* message */) | 380 std::string /* message */) |
| 382 | 381 |
| 383 IPC_END_MESSAGES(NPObject) | 382 IPC_END_MESSAGES(NPObject) |
| OLD | NEW |