| 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 440 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 451 IPC_MESSAGE_ROUTED0(ChromeViewMsg_GetFPS) | 451 IPC_MESSAGE_ROUTED0(ChromeViewMsg_GetFPS) |
| 452 | 452 |
| 453 // Tells the view it is displaying an interstitial page. | 453 // Tells the view it is displaying an interstitial page. |
| 454 IPC_MESSAGE_ROUTED0(ChromeViewMsg_SetAsInterstitial) | 454 IPC_MESSAGE_ROUTED0(ChromeViewMsg_SetAsInterstitial) |
| 455 | 455 |
| 456 // Provides the renderer with the results of the browser's investigation into | 456 // Provides the renderer with the results of the browser's investigation into |
| 457 // why a recent main frame load failed (currently, just DNS probe result). | 457 // why a recent main frame load failed (currently, just DNS probe result). |
| 458 // NetErrorHelper will receive this mesage and replace or update the error | 458 // NetErrorHelper will receive this mesage and replace or update the error |
| 459 // page with more specific troubleshooting suggestions. | 459 // page with more specific troubleshooting suggestions. |
| 460 IPC_MESSAGE_ROUTED1(ChromeViewMsg_NetErrorInfo, | 460 IPC_MESSAGE_ROUTED1(ChromeViewMsg_NetErrorInfo, |
| 461 int /* DNS probe result */) | 461 int /* DNS probe status */) |
| 462 | 462 |
| 463 //----------------------------------------------------------------------------- | 463 //----------------------------------------------------------------------------- |
| 464 // Misc messages | 464 // Misc messages |
| 465 // These are messages sent from the renderer to the browser process. | 465 // These are messages sent from the renderer to the browser process. |
| 466 | 466 |
| 467 // Provides the contents for the given page that was loaded recently. | 467 // Provides the contents for the given page that was loaded recently. |
| 468 IPC_MESSAGE_ROUTED3(ChromeViewHostMsg_PageContents, | 468 IPC_MESSAGE_ROUTED3(ChromeViewHostMsg_PageContents, |
| 469 GURL /* URL of the page */, | 469 GURL /* URL of the page */, |
| 470 int32 /* page id */, | 470 int32 /* page id */, |
| 471 string16 /* page contents */) | 471 string16 /* page contents */) |
| (...skipping 271 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 743 // previous SetCookie message to be processed. | 743 // previous SetCookie message to be processed. |
| 744 IPC_SYNC_MESSAGE_ROUTED2_1(ChromeViewHostMsg_GetCookies, | 744 IPC_SYNC_MESSAGE_ROUTED2_1(ChromeViewHostMsg_GetCookies, |
| 745 GURL /* url */, | 745 GURL /* url */, |
| 746 GURL /* first_party_for_cookies */, | 746 GURL /* first_party_for_cookies */, |
| 747 std::string /* cookies */) | 747 std::string /* cookies */) |
| 748 | 748 |
| 749 // Provide the browser process with current renderer framerate. | 749 // Provide the browser process with current renderer framerate. |
| 750 IPC_MESSAGE_CONTROL2(ChromeViewHostMsg_FPS, | 750 IPC_MESSAGE_CONTROL2(ChromeViewHostMsg_FPS, |
| 751 int /* routing id */, | 751 int /* routing id */, |
| 752 float /* frames per second */) | 752 float /* frames per second */) |
| OLD | NEW |