OLD | NEW |
1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2010 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 // This header is meant to be included in multiple passes, hence no traditional | 5 // This header is meant to be included in multiple passes, hence no traditional |
6 // header guard. | 6 // header guard. |
7 // See ipc_message_macros.h for explanation of the macros and passes. | 7 // See ipc_message_macros.h for explanation of the macros and passes. |
8 | 8 |
9 #include <map> | 9 #include <map> |
10 #include <string> | 10 #include <string> |
(...skipping 1375 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1386 std::string /* origin */, | 1386 std::string /* origin */, |
1387 std::string /* target */) | 1387 std::string /* target */) |
1388 | 1388 |
1389 // A renderer sends this to the browser process when it wants to | 1389 // A renderer sends this to the browser process when it wants to |
1390 // create a plugin. The browser will create the plugin process if | 1390 // create a plugin. The browser will create the plugin process if |
1391 // necessary, and will return a handle to the channel on success. | 1391 // necessary, and will return a handle to the channel on success. |
1392 // On error an empty string is returned. | 1392 // On error an empty string is returned. |
1393 IPC_SYNC_MESSAGE_CONTROL3_2(ViewHostMsg_OpenChannelToPlugin, | 1393 IPC_SYNC_MESSAGE_CONTROL3_2(ViewHostMsg_OpenChannelToPlugin, |
1394 GURL /* url */, | 1394 GURL /* url */, |
1395 std::string /* mime_type */, | 1395 std::string /* mime_type */, |
1396 std::wstring /* locale */, | 1396 std::string /* locale */, |
1397 IPC::ChannelHandle /* handle to channel */, | 1397 IPC::ChannelHandle /* handle to channel */, |
1398 WebPluginInfo /* info */) | 1398 WebPluginInfo /* info */) |
1399 | 1399 |
1400 // A renderer sends this to the browser process when it wants to | 1400 // A renderer sends this to the browser process when it wants to |
1401 // create connect to the GPU. The browser will create the GPU process if | 1401 // create connect to the GPU. The browser will create the GPU process if |
1402 // necessary, and will return a handle to the channel via | 1402 // necessary, and will return a handle to the channel via |
1403 // a GpuChannelEstablished message. | 1403 // a GpuChannelEstablished message. |
1404 IPC_MESSAGE_CONTROL0(ViewHostMsg_EstablishGpuChannel) | 1404 IPC_MESSAGE_CONTROL0(ViewHostMsg_EstablishGpuChannel) |
1405 | 1405 |
1406 // A renderer sends this to the browser process to provide a synchronization | 1406 // A renderer sends this to the browser process to provide a synchronization |
(...skipping 1126 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2533 // Send the tree of accessibility data to the browser, where it's cached | 2533 // Send the tree of accessibility data to the browser, where it's cached |
2534 // in order to respond to OS accessibility queries immediately. | 2534 // in order to respond to OS accessibility queries immediately. |
2535 IPC_MESSAGE_ROUTED1(ViewHostMsg_AccessibilityTree, | 2535 IPC_MESSAGE_ROUTED1(ViewHostMsg_AccessibilityTree, |
2536 webkit_glue::WebAccessibility) | 2536 webkit_glue::WebAccessibility) |
2537 | 2537 |
2538 // Notifies the TabContents that the content being displayed is PDF. | 2538 // Notifies the TabContents that the content being displayed is PDF. |
2539 // This allows the browser to handle things such as zooming differently. | 2539 // This allows the browser to handle things such as zooming differently. |
2540 IPC_MESSAGE_ROUTED0(ViewHostMsg_SetDisplayingPDFContent) | 2540 IPC_MESSAGE_ROUTED0(ViewHostMsg_SetDisplayingPDFContent) |
2541 | 2541 |
2542 IPC_END_MESSAGES(ViewHost) | 2542 IPC_END_MESSAGES(ViewHost) |
OLD | NEW |