| 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 #include <string> | 6 #include <string> |
| 7 #include <vector> | 7 #include <vector> |
| 8 | 8 |
| 9 #include "base/basictypes.h" | 9 #include "base/basictypes.h" |
| 10 #include "base/file_path.h" | 10 #include "base/file_path.h" |
| (...skipping 225 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 236 // PPP_NetworkState_Dev. | 236 // PPP_NetworkState_Dev. |
| 237 IPC_MESSAGE_CONTROL1(PpapiMsg_SetNetworkState, | 237 IPC_MESSAGE_CONTROL1(PpapiMsg_SetNetworkState, |
| 238 bool /* online */) | 238 bool /* online */) |
| 239 | 239 |
| 240 // Sent in both directions to see if the other side supports the given | 240 // Sent in both directions to see if the other side supports the given |
| 241 // interface. | 241 // interface. |
| 242 IPC_SYNC_MESSAGE_CONTROL1_1(PpapiMsg_SupportsInterface, | 242 IPC_SYNC_MESSAGE_CONTROL1_1(PpapiMsg_SupportsInterface, |
| 243 std::string /* interface_name */, | 243 std::string /* interface_name */, |
| 244 bool /* result */) | 244 bool /* result */) |
| 245 | 245 |
| 246 // Instructs the plugin to clear data for the given site & time. The plugin |
| 247 // process will respond with PpapiHostMsg_ClearSiteDataResult. |
| 248 IPC_MESSAGE_CONTROL3(PpapiMsg_ClearSiteData, |
| 249 std::string /* site */, |
| 250 uint64 /* flags */, |
| 251 uint64 /* max_age */) |
| 252 IPC_MESSAGE_CONTROL1(PpapiHostMsg_ClearSiteDataResult, |
| 253 bool /* success */) |
| 254 |
| 246 // Broker Process. | 255 // Broker Process. |
| 247 | |
| 248 IPC_SYNC_MESSAGE_CONTROL2_1(PpapiMsg_ConnectToPlugin, | 256 IPC_SYNC_MESSAGE_CONTROL2_1(PpapiMsg_ConnectToPlugin, |
| 249 PP_Instance /* instance */, | 257 PP_Instance /* instance */, |
| 250 IPC::PlatformFileForTransit /* handle */, | 258 IPC::PlatformFileForTransit /* handle */, |
| 251 int32_t /* result */) | 259 int32_t /* result */) |
| 252 | 260 |
| 253 // PPB_Audio. | 261 // PPB_Audio. |
| 254 | 262 |
| 255 // Notifies the result of the audio stream create call. This is called in | 263 // Notifies the result of the audio stream create call. This is called in |
| 256 // both error cases and in the normal success case. These cases are | 264 // both error cases and in the normal success case. These cases are |
| 257 // differentiated by the result code, which is one of the standard PPAPI | 265 // differentiated by the result code, which is one of the standard PPAPI |
| (...skipping 1055 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1313 IPC_MESSAGE_CONTROL2(PpapiHostMsg_PPBTCPServerSocket_Accept, | 1321 IPC_MESSAGE_CONTROL2(PpapiHostMsg_PPBTCPServerSocket_Accept, |
| 1314 int32 /* tcp_client_socket_routing_id */, | 1322 int32 /* tcp_client_socket_routing_id */, |
| 1315 uint32 /* server_socket_id */) | 1323 uint32 /* server_socket_id */) |
| 1316 IPC_MESSAGE_CONTROL1(PpapiHostMsg_PPBTCPServerSocket_Destroy, | 1324 IPC_MESSAGE_CONTROL1(PpapiHostMsg_PPBTCPServerSocket_Destroy, |
| 1317 uint32 /* socket_id */) | 1325 uint32 /* socket_id */) |
| 1318 | 1326 |
| 1319 // PPB_Font. | 1327 // PPB_Font. |
| 1320 IPC_SYNC_MESSAGE_CONTROL0_1(PpapiHostMsg_PPBFont_GetFontFamilies, | 1328 IPC_SYNC_MESSAGE_CONTROL0_1(PpapiHostMsg_PPBFont_GetFontFamilies, |
| 1321 std::string /* result */) | 1329 std::string /* result */) |
| 1322 #endif // !defined(OS_NACL) | 1330 #endif // !defined(OS_NACL) |
| OLD | NEW |