| OLD | NEW |
| 1 // Copyright (c) 2010 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 #include <map> | 5 #include <map> |
| 6 #include <set> | 6 #include <set> |
| 7 #include <string> | 7 #include <string> |
| 8 #include <vector> | 8 #include <vector> |
| 9 | 9 |
| 10 #include "build/build_config.h" | 10 #include "build/build_config.h" |
| 11 | 11 |
| (...skipping 335 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 347 // Sent when some data from a resource request has been downloaded to | 347 // Sent when some data from a resource request has been downloaded to |
| 348 // file. This is only called in the 'download_to_file' case and replaces | 348 // file. This is only called in the 'download_to_file' case and replaces |
| 349 // ViewMsg_Resource_DataReceived in the call sequence in that case. | 349 // ViewMsg_Resource_DataReceived in the call sequence in that case. |
| 350 IPC_MESSAGE_ROUTED2(ViewMsg_Resource_DataDownloaded, | 350 IPC_MESSAGE_ROUTED2(ViewMsg_Resource_DataDownloaded, |
| 351 int /* request_id */, | 351 int /* request_id */, |
| 352 int /* data_len */) | 352 int /* data_len */) |
| 353 | 353 |
| 354 // Sent when the request has been completed. | 354 // Sent when the request has been completed. |
| 355 IPC_MESSAGE_ROUTED4(ViewMsg_Resource_RequestComplete, | 355 IPC_MESSAGE_ROUTED4(ViewMsg_Resource_RequestComplete, |
| 356 int /* request_id */, | 356 int /* request_id */, |
| 357 URLRequestStatus /* status */, | 357 net::URLRequestStatus /* status */, |
| 358 std::string /* security info */, | 358 std::string /* security info */, |
| 359 base::Time /* completion_time */) | 359 base::Time /* completion_time */) |
| 360 | 360 |
| 361 // Sent when user prompting is required before a ViewHostMsg_GetCookies | 361 // Sent when user prompting is required before a ViewHostMsg_GetCookies |
| 362 // message can complete. This message indicates that the renderer should | 362 // message can complete. This message indicates that the renderer should |
| 363 // pump messages while waiting for cookies. | 363 // pump messages while waiting for cookies. |
| 364 IPC_MESSAGE_CONTROL0(ViewMsg_SignalCookiePromptEvent) | 364 IPC_MESSAGE_CONTROL0(ViewMsg_SignalCookiePromptEvent) |
| 365 | 365 |
| 366 // Request for the renderer to evaluate an xpath to a frame and execute a | 366 // Request for the renderer to evaluate an xpath to a frame and execute a |
| 367 // javascript: url in that frame's context. The message is completely | 367 // javascript: url in that frame's context. The message is completely |
| (...skipping 2250 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2618 int /* request_id */, | 2618 int /* request_id */, |
| 2619 PP_Flash_NetAddress /* addr */) | 2619 PP_Flash_NetAddress /* addr */) |
| 2620 | 2620 |
| 2621 // JavaScript related messages ----------------------------------------------- | 2621 // JavaScript related messages ----------------------------------------------- |
| 2622 | 2622 |
| 2623 // Notify the JavaScript engine in the render to change its parameters | 2623 // Notify the JavaScript engine in the render to change its parameters |
| 2624 // while performing stress testing. | 2624 // while performing stress testing. |
| 2625 IPC_MESSAGE_ROUTED2(ViewMsg_JavaScriptStressTestControl, | 2625 IPC_MESSAGE_ROUTED2(ViewMsg_JavaScriptStressTestControl, |
| 2626 int /* cmd */, | 2626 int /* cmd */, |
| 2627 int /* param */) | 2627 int /* param */) |
| OLD | NEW |