| 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_CONTROL4(PpapiMsg_ClearSiteData, |
| 249 FilePath /* profile_path */, |
| 250 std::string /* site */, |
| 251 uint64 /* flags */, |
| 252 uint64 /* max_age */) |
| 253 IPC_MESSAGE_CONTROL1(PpapiHostMsg_ClearSiteDataResult, |
| 254 bool /* success */) |
| 255 |
| 246 // Broker Process. | 256 // Broker Process. |
| 247 | |
| 248 IPC_SYNC_MESSAGE_CONTROL2_1(PpapiMsg_ConnectToPlugin, | 257 IPC_SYNC_MESSAGE_CONTROL2_1(PpapiMsg_ConnectToPlugin, |
| 249 PP_Instance /* instance */, | 258 PP_Instance /* instance */, |
| 250 IPC::PlatformFileForTransit /* handle */, | 259 IPC::PlatformFileForTransit /* handle */, |
| 251 int32_t /* result */) | 260 int32_t /* result */) |
| 252 | 261 |
| 253 // PPB_Audio. | 262 // PPB_Audio. |
| 254 | 263 |
| 255 // Notifies the result of the audio stream create call. This is called in | 264 // 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 | 265 // 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 | 266 // 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, | 1322 IPC_MESSAGE_CONTROL2(PpapiHostMsg_PPBTCPServerSocket_Accept, |
| 1314 int32 /* tcp_client_socket_routing_id */, | 1323 int32 /* tcp_client_socket_routing_id */, |
| 1315 uint32 /* server_socket_id */) | 1324 uint32 /* server_socket_id */) |
| 1316 IPC_MESSAGE_CONTROL1(PpapiHostMsg_PPBTCPServerSocket_Destroy, | 1325 IPC_MESSAGE_CONTROL1(PpapiHostMsg_PPBTCPServerSocket_Destroy, |
| 1317 uint32 /* socket_id */) | 1326 uint32 /* socket_id */) |
| 1318 | 1327 |
| 1319 // PPB_Font. | 1328 // PPB_Font. |
| 1320 IPC_SYNC_MESSAGE_CONTROL0_1(PpapiHostMsg_PPBFont_GetFontFamilies, | 1329 IPC_SYNC_MESSAGE_CONTROL0_1(PpapiHostMsg_PPBFont_GetFontFamilies, |
| 1321 std::string /* result */) | 1330 std::string /* result */) |
| 1322 #endif // !defined(OS_NACL) | 1331 #endif // !defined(OS_NACL) |
| OLD | NEW |