| 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 328 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 339 IPC_MESSAGE_ROUTED2(ChromeViewMsg_JavaScriptStressTestControl, | 339 IPC_MESSAGE_ROUTED2(ChromeViewMsg_JavaScriptStressTestControl, |
| 340 int /* cmd */, | 340 int /* cmd */, |
| 341 int /* param */) | 341 int /* param */) |
| 342 | 342 |
| 343 // Asks the renderer to send back FPS. | 343 // Asks the renderer to send back FPS. |
| 344 IPC_MESSAGE_ROUTED0(ChromeViewMsg_GetFPS) | 344 IPC_MESSAGE_ROUTED0(ChromeViewMsg_GetFPS) |
| 345 | 345 |
| 346 // Tells the view it is displaying an interstitial page. | 346 // Tells the view it is displaying an interstitial page. |
| 347 IPC_MESSAGE_ROUTED0(ChromeViewMsg_SetAsInterstitial) | 347 IPC_MESSAGE_ROUTED0(ChromeViewMsg_SetAsInterstitial) |
| 348 | 348 |
| 349 // Tells the renderer to suspend/resume the webkit timers. |
| 350 IPC_MESSAGE_CONTROL1(ChromeViewMsg_ToggleWebKitSharedTimer, |
| 351 bool /* suspend */) |
| 352 |
| 349 //----------------------------------------------------------------------------- | 353 //----------------------------------------------------------------------------- |
| 350 // Misc messages | 354 // Misc messages |
| 351 // These are messages sent from the renderer to the browser process. | 355 // These are messages sent from the renderer to the browser process. |
| 352 | 356 |
| 353 // Provides the contents for the given page that was loaded recently. | 357 // Provides the contents for the given page that was loaded recently. |
| 354 IPC_MESSAGE_ROUTED3(ChromeViewHostMsg_PageContents, | 358 IPC_MESSAGE_ROUTED3(ChromeViewHostMsg_PageContents, |
| 355 GURL /* URL of the page */, | 359 GURL /* URL of the page */, |
| 356 int32 /* page id */, | 360 int32 /* page id */, |
| 357 string16 /* page contents */) | 361 string16 /* page contents */) |
| 358 | 362 |
| (...skipping 266 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 625 // previous SetCookie message to be processed. | 629 // previous SetCookie message to be processed. |
| 626 IPC_SYNC_MESSAGE_ROUTED2_1(ChromeViewHostMsg_GetCookies, | 630 IPC_SYNC_MESSAGE_ROUTED2_1(ChromeViewHostMsg_GetCookies, |
| 627 GURL /* url */, | 631 GURL /* url */, |
| 628 GURL /* first_party_for_cookies */, | 632 GURL /* first_party_for_cookies */, |
| 629 std::string /* cookies */) | 633 std::string /* cookies */) |
| 630 | 634 |
| 631 // Provide the browser process with current renderer framerate. | 635 // Provide the browser process with current renderer framerate. |
| 632 IPC_MESSAGE_CONTROL2(ChromeViewHostMsg_FPS, | 636 IPC_MESSAGE_CONTROL2(ChromeViewHostMsg_FPS, |
| 633 int /* routing id */, | 637 int /* routing id */, |
| 634 float /* frames per second */) | 638 float /* frames per second */) |
| OLD | NEW |