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