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