OLD | NEW |
1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 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/common_param_traits.h" | 10 #include "content/common/common_param_traits.h" |
(...skipping 1136 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1147 // Tells the render view that a ViewHostMsg_AccessibilityNotifications | 1147 // Tells the render view that a ViewHostMsg_AccessibilityNotifications |
1148 // message was processed and it can send addition notifications. | 1148 // message was processed and it can send addition notifications. |
1149 IPC_MESSAGE_ROUTED0(ViewMsg_AccessibilityNotifications_ACK) | 1149 IPC_MESSAGE_ROUTED0(ViewMsg_AccessibilityNotifications_ACK) |
1150 | 1150 |
1151 // Reply to ViewHostMsg_OpenChannelToPpapiBroker | 1151 // Reply to ViewHostMsg_OpenChannelToPpapiBroker |
1152 // Tells the renderer that the channel to the broker has been created. | 1152 // Tells the renderer that the channel to the broker has been created. |
1153 IPC_MESSAGE_ROUTED2(ViewMsg_PpapiBrokerChannelCreated, | 1153 IPC_MESSAGE_ROUTED2(ViewMsg_PpapiBrokerChannelCreated, |
1154 int /* request_id */, | 1154 int /* request_id */, |
1155 IPC::ChannelHandle /* handle */) | 1155 IPC::ChannelHandle /* handle */) |
1156 | 1156 |
| 1157 // Tells the renderer to empty its plugin list cache, optional reloading |
| 1158 // pages containing plugins. |
| 1159 IPC_MESSAGE_CONTROL1(ViewMsg_PurgePluginListCache, |
| 1160 bool /* reload_pages */) |
| 1161 |
| 1162 |
1157 // Messages sent from the renderer to the browser. | 1163 // Messages sent from the renderer to the browser. |
1158 | 1164 |
1159 // Sent by the renderer when it is creating a new window. The browser creates | 1165 // Sent by the renderer when it is creating a new window. The browser creates |
1160 // a tab for it and responds with a ViewMsg_CreatingNew_ACK. If route_id is | 1166 // a tab for it and responds with a ViewMsg_CreatingNew_ACK. If route_id is |
1161 // MSG_ROUTING_NONE, the view couldn't be created. | 1167 // MSG_ROUTING_NONE, the view couldn't be created. |
1162 IPC_SYNC_MESSAGE_CONTROL1_2(ViewHostMsg_CreateWindow, | 1168 IPC_SYNC_MESSAGE_CONTROL1_2(ViewHostMsg_CreateWindow, |
1163 ViewHostMsg_CreateWindow_Params, | 1169 ViewHostMsg_CreateWindow_Params, |
1164 int /* route_id */, | 1170 int /* route_id */, |
1165 int64 /* cloned_session_storage_namespace_id */) | 1171 int64 /* cloned_session_storage_namespace_id */) |
1166 | 1172 |
(...skipping 726 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1893 // enable or disable spdy. Used for debugging/testing/benchmarking. | 1899 // enable or disable spdy. Used for debugging/testing/benchmarking. |
1894 IPC_MESSAGE_CONTROL1(ViewHostMsg_EnableSpdy, | 1900 IPC_MESSAGE_CONTROL1(ViewHostMsg_EnableSpdy, |
1895 bool /* enable */) | 1901 bool /* enable */) |
1896 | 1902 |
1897 // Message sent from the renderer to the browser to request that the browser | 1903 // Message sent from the renderer to the browser to request that the browser |
1898 // cache |data| associated with |url|. | 1904 // cache |data| associated with |url|. |
1899 IPC_MESSAGE_CONTROL3(ViewHostMsg_DidGenerateCacheableMetadata, | 1905 IPC_MESSAGE_CONTROL3(ViewHostMsg_DidGenerateCacheableMetadata, |
1900 GURL /* url */, | 1906 GURL /* url */, |
1901 double /* expected_response_time */, | 1907 double /* expected_response_time */, |
1902 std::vector<char> /* data */) | 1908 std::vector<char> /* data */) |
OLD | NEW |