| 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 404 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 415 IPC_MESSAGE_ROUTED0(ChromeViewMsg_SetAsInterstitial) | 415 IPC_MESSAGE_ROUTED0(ChromeViewMsg_SetAsInterstitial) |
| 416 | 416 |
| 417 // Tells the renderer to suspend/resume the webkit timers. | 417 // Tells the renderer to suspend/resume the webkit timers. |
| 418 IPC_MESSAGE_CONTROL1(ChromeViewMsg_ToggleWebKitSharedTimer, | 418 IPC_MESSAGE_CONTROL1(ChromeViewMsg_ToggleWebKitSharedTimer, |
| 419 bool /* suspend */) | 419 bool /* suspend */) |
| 420 | 420 |
| 421 // Provides the renderer with the results of the browser's investigation into | 421 // Provides the renderer with the results of the browser's investigation into |
| 422 // why a recent main frame load failed (currently, just DNS probe result). | 422 // why a recent main frame load failed (currently, just DNS probe result). |
| 423 // NetErrorHelper will receive this mesage and replace or update the error | 423 // NetErrorHelper will receive this mesage and replace or update the error |
| 424 // page with more specific troubleshooting suggestions. | 424 // page with more specific troubleshooting suggestions. |
| 425 IPC_MESSAGE_ROUTED1(ChromeViewMsg_NetErrorInfo, | 425 IPC_MESSAGE_ROUTED2(ChromeViewMsg_NetErrorInfo, |
| 426 int /* DNS probe status */, |
| 426 int /* DNS probe result */) | 427 int /* DNS probe result */) |
| 427 | 428 |
| 428 //----------------------------------------------------------------------------- | 429 //----------------------------------------------------------------------------- |
| 429 // Misc messages | 430 // Misc messages |
| 430 // These are messages sent from the renderer to the browser process. | 431 // These are messages sent from the renderer to the browser process. |
| 431 | 432 |
| 432 // Provides the contents for the given page that was loaded recently. | 433 // Provides the contents for the given page that was loaded recently. |
| 433 IPC_MESSAGE_ROUTED3(ChromeViewHostMsg_PageContents, | 434 IPC_MESSAGE_ROUTED3(ChromeViewHostMsg_PageContents, |
| 434 GURL /* URL of the page */, | 435 GURL /* URL of the page */, |
| 435 int32 /* page id */, | 436 int32 /* page id */, |
| (...skipping 291 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 727 // previous SetCookie message to be processed. | 728 // previous SetCookie message to be processed. |
| 728 IPC_SYNC_MESSAGE_ROUTED2_1(ChromeViewHostMsg_GetCookies, | 729 IPC_SYNC_MESSAGE_ROUTED2_1(ChromeViewHostMsg_GetCookies, |
| 729 GURL /* url */, | 730 GURL /* url */, |
| 730 GURL /* first_party_for_cookies */, | 731 GURL /* first_party_for_cookies */, |
| 731 std::string /* cookies */) | 732 std::string /* cookies */) |
| 732 | 733 |
| 733 // Provide the browser process with current renderer framerate. | 734 // Provide the browser process with current renderer framerate. |
| 734 IPC_MESSAGE_CONTROL2(ChromeViewHostMsg_FPS, | 735 IPC_MESSAGE_CONTROL2(ChromeViewHostMsg_FPS, |
| 735 int /* routing id */, | 736 int /* routing id */, |
| 736 float /* frames per second */) | 737 float /* frames per second */) |
| OLD | NEW |