| 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 // Multiply-included file, no traditional include guard. | 5 // Multiply-included file, no traditional include guard. |
| 6 #include <map> | 6 #include <map> |
| 7 #include <set> | 7 #include <set> |
| 8 #include <string> | 8 #include <string> |
| 9 #include <vector> | 9 #include <vector> |
| 10 | 10 |
| (...skipping 446 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 457 IPC_MESSAGE_ROUTED0(ChromeViewMsg_GetFPS) | 457 IPC_MESSAGE_ROUTED0(ChromeViewMsg_GetFPS) |
| 458 | 458 |
| 459 // Tells the view it is displaying an interstitial page. | 459 // Tells the view it is displaying an interstitial page. |
| 460 IPC_MESSAGE_ROUTED0(ChromeViewMsg_SetAsInterstitial) | 460 IPC_MESSAGE_ROUTED0(ChromeViewMsg_SetAsInterstitial) |
| 461 | 461 |
| 462 // Provides the renderer with the results of the browser's investigation into | 462 // Provides the renderer with the results of the browser's investigation into |
| 463 // why a recent main frame load failed (currently, just DNS probe result). | 463 // why a recent main frame load failed (currently, just DNS probe result). |
| 464 // NetErrorHelper will receive this mesage and replace or update the error | 464 // NetErrorHelper will receive this mesage and replace or update the error |
| 465 // page with more specific troubleshooting suggestions. | 465 // page with more specific troubleshooting suggestions. |
| 466 IPC_MESSAGE_ROUTED1(ChromeViewMsg_NetErrorInfo, | 466 IPC_MESSAGE_ROUTED1(ChromeViewMsg_NetErrorInfo, |
| 467 int /* DNS probe result */) | 467 int /* DNS probe status */) |
| 468 | 468 |
| 469 //----------------------------------------------------------------------------- | 469 //----------------------------------------------------------------------------- |
| 470 // Misc messages | 470 // Misc messages |
| 471 // These are messages sent from the renderer to the browser process. | 471 // These are messages sent from the renderer to the browser process. |
| 472 | 472 |
| 473 // Provides the contents for the given page that was loaded recently. | 473 // Provides the contents for the given page that was loaded recently. |
| 474 IPC_MESSAGE_ROUTED3(ChromeViewHostMsg_PageContents, | 474 IPC_MESSAGE_ROUTED3(ChromeViewHostMsg_PageContents, |
| 475 GURL /* URL of the page */, | 475 GURL /* URL of the page */, |
| 476 int32 /* page id */, | 476 int32 /* page id */, |
| 477 string16 /* page contents */) | 477 string16 /* page contents */) |
| (...skipping 302 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 780 // previous SetCookie message to be processed. | 780 // previous SetCookie message to be processed. |
| 781 IPC_SYNC_MESSAGE_ROUTED2_1(ChromeViewHostMsg_GetCookies, | 781 IPC_SYNC_MESSAGE_ROUTED2_1(ChromeViewHostMsg_GetCookies, |
| 782 GURL /* url */, | 782 GURL /* url */, |
| 783 GURL /* first_party_for_cookies */, | 783 GURL /* first_party_for_cookies */, |
| 784 std::string /* cookies */) | 784 std::string /* cookies */) |
| 785 | 785 |
| 786 // Provide the browser process with current renderer framerate. | 786 // Provide the browser process with current renderer framerate. |
| 787 IPC_MESSAGE_CONTROL2(ChromeViewHostMsg_FPS, | 787 IPC_MESSAGE_CONTROL2(ChromeViewHostMsg_FPS, |
| 788 int /* routing id */, | 788 int /* routing id */, |
| 789 float /* frames per second */) | 789 float /* frames per second */) |
| OLD | NEW |