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 1217 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1228 ViewHostMsg_ShowPopup_Params) | 1228 ViewHostMsg_ShowPopup_Params) |
1229 | 1229 |
1230 // Response from ViewMsg_ScriptEvalRequest. The ID is the parameter supplied | 1230 // Response from ViewMsg_ScriptEvalRequest. The ID is the parameter supplied |
1231 // to ViewMsg_ScriptEvalRequest. The result has the value returned by the | 1231 // to ViewMsg_ScriptEvalRequest. The result has the value returned by the |
1232 // script as it's only element, one of Null, Boolean, Integer, Real, Date, or | 1232 // script as it's only element, one of Null, Boolean, Integer, Real, Date, or |
1233 // String. | 1233 // String. |
1234 IPC_MESSAGE_ROUTED2(ViewHostMsg_ScriptEvalResponse, | 1234 IPC_MESSAGE_ROUTED2(ViewHostMsg_ScriptEvalResponse, |
1235 int /* id */, | 1235 int /* id */, |
1236 ListValue /* result */) | 1236 ListValue /* result */) |
1237 | 1237 |
| 1238 // Sent by the renderer process to acknowledge receipt of a |
| 1239 // ViewMsg_CSSInsertRequest message and css has been inserted into the frame. |
| 1240 IPC_MESSAGE_ROUTED0(ViewHostMsg_OnCSSInserted) |
| 1241 |
1238 // Result of string search in the page. | 1242 // Result of string search in the page. |
1239 // Response to ViewMsg_Find with the results of the requested find-in-page | 1243 // Response to ViewMsg_Find with the results of the requested find-in-page |
1240 // search, the number of matches found and the selection rect (in screen | 1244 // search, the number of matches found and the selection rect (in screen |
1241 // coordinates) for the string found. If |final_update| is false, it signals | 1245 // coordinates) for the string found. If |final_update| is false, it signals |
1242 // that this is not the last Find_Reply message - more will be sent as the | 1246 // that this is not the last Find_Reply message - more will be sent as the |
1243 // scoping effort continues. | 1247 // scoping effort continues. |
1244 IPC_MESSAGE_ROUTED5(ViewHostMsg_Find_Reply, | 1248 IPC_MESSAGE_ROUTED5(ViewHostMsg_Find_Reply, |
1245 int /* request_id */, | 1249 int /* request_id */, |
1246 int /* number of matches */, | 1250 int /* number of matches */, |
1247 gfx::Rect /* selection_rect */, | 1251 gfx::Rect /* selection_rect */, |
(...skipping 603 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1851 // enable or disable spdy. Used for debugging/testing/benchmarking. | 1855 // enable or disable spdy. Used for debugging/testing/benchmarking. |
1852 IPC_MESSAGE_CONTROL1(ViewHostMsg_EnableSpdy, | 1856 IPC_MESSAGE_CONTROL1(ViewHostMsg_EnableSpdy, |
1853 bool /* enable */) | 1857 bool /* enable */) |
1854 | 1858 |
1855 // Message sent from the renderer to the browser to request that the browser | 1859 // Message sent from the renderer to the browser to request that the browser |
1856 // cache |data| associated with |url|. | 1860 // cache |data| associated with |url|. |
1857 IPC_MESSAGE_CONTROL3(ViewHostMsg_DidGenerateCacheableMetadata, | 1861 IPC_MESSAGE_CONTROL3(ViewHostMsg_DidGenerateCacheableMetadata, |
1858 GURL /* url */, | 1862 GURL /* url */, |
1859 double /* expected_response_time */, | 1863 double /* expected_response_time */, |
1860 std::vector<char> /* data */) | 1864 std::vector<char> /* data */) |
OLD | NEW |