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 // IPC messages for page rendering. | 5 // IPC messages for page rendering. |
6 // Multiply-included message file, hence no include guard. | 6 // Multiply-included message file, hence no include guard. |
7 | 7 |
8 #include "base/process.h" | 8 #include "base/process.h" |
9 #include "base/shared_memory.h" | 9 #include "base/shared_memory.h" |
10 #include "content/common/content_export.h" | 10 #include "content/common/content_export.h" |
(...skipping 2074 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2085 IPC_MESSAGE_ROUTED3(ViewHostMsg_SendCurrentPageAllSavableResourceLinks, | 2085 IPC_MESSAGE_ROUTED3(ViewHostMsg_SendCurrentPageAllSavableResourceLinks, |
2086 std::vector<GURL> /* all savable resource links */, | 2086 std::vector<GURL> /* all savable resource links */, |
2087 std::vector<content::Referrer> /* all referrers */, | 2087 std::vector<content::Referrer> /* all referrers */, |
2088 std::vector<GURL> /* all frame links */) | 2088 std::vector<GURL> /* all frame links */) |
2089 | 2089 |
2090 IPC_MESSAGE_ROUTED3(ViewHostMsg_SendSerializedHtmlData, | 2090 IPC_MESSAGE_ROUTED3(ViewHostMsg_SendSerializedHtmlData, |
2091 GURL /* frame's url */, | 2091 GURL /* frame's url */, |
2092 std::string /* data buffer */, | 2092 std::string /* data buffer */, |
2093 int32 /* complete status */) | 2093 int32 /* complete status */) |
2094 | 2094 |
| 2095 #if defined(OS_ANDROID) |
| 2096 // Start an android intent with the given URI. |
| 2097 IPC_MESSAGE_ROUTED1(ViewHostMsg_StartContentIntent, |
| 2098 GURL /* content_url */) |
| 2099 #endif |
| 2100 |
2095 // Notifies the browser of an event occurring in the media pipeline. | 2101 // Notifies the browser of an event occurring in the media pipeline. |
2096 IPC_MESSAGE_CONTROL1(ViewHostMsg_MediaLogEvent, | 2102 IPC_MESSAGE_CONTROL1(ViewHostMsg_MediaLogEvent, |
2097 media::MediaLogEvent /* event */) | 2103 media::MediaLogEvent /* event */) |
2098 | 2104 |
2099 // Requests to lock the mouse. Will result in a ViewMsg_LockMouse_ACK message | 2105 // Requests to lock the mouse. Will result in a ViewMsg_LockMouse_ACK message |
2100 // being sent back. | 2106 // being sent back. |
2101 // |privileged| is used by Pepper Flash. If this flag is set to true, we won't | 2107 // |privileged| is used by Pepper Flash. If this flag is set to true, we won't |
2102 // pop up a bubble to ask for user permission or take mouse lock content into | 2108 // pop up a bubble to ask for user permission or take mouse lock content into |
2103 // account. | 2109 // account. |
2104 IPC_MESSAGE_ROUTED3(ViewHostMsg_LockMouse, | 2110 IPC_MESSAGE_ROUTED3(ViewHostMsg_LockMouse, |
(...skipping 20 matching lines...) Expand all Loading... |
2125 // (according to the value of is_hung). The browser can give the user the | 2131 // (according to the value of is_hung). The browser can give the user the |
2126 // option of killing the plugin. | 2132 // option of killing the plugin. |
2127 IPC_MESSAGE_ROUTED3(ViewHostMsg_PepperPluginHung, | 2133 IPC_MESSAGE_ROUTED3(ViewHostMsg_PepperPluginHung, |
2128 int /* plugin_child_id */, | 2134 int /* plugin_child_id */, |
2129 FilePath /* path */, | 2135 FilePath /* path */, |
2130 bool /* is_hung */) | 2136 bool /* is_hung */) |
2131 | 2137 |
2132 // Screen was rotated. Dispatched to the onorientationchange javascript API. | 2138 // Screen was rotated. Dispatched to the onorientationchange javascript API. |
2133 IPC_MESSAGE_ROUTED1(ViewMsg_OrientationChangeEvent, | 2139 IPC_MESSAGE_ROUTED1(ViewMsg_OrientationChangeEvent, |
2134 int /* orientation */) | 2140 int /* orientation */) |
OLD | NEW |