| OLD | NEW |
| 1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 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 329 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 340 | 340 |
| 341 // Notify the JavaScript engine in the render to change its parameters | 341 // Notify the JavaScript engine in the render to change its parameters |
| 342 // while performing stress testing. | 342 // while performing stress testing. |
| 343 IPC_MESSAGE_ROUTED2(ChromeViewMsg_JavaScriptStressTestControl, | 343 IPC_MESSAGE_ROUTED2(ChromeViewMsg_JavaScriptStressTestControl, |
| 344 int /* cmd */, | 344 int /* cmd */, |
| 345 int /* param */) | 345 int /* param */) |
| 346 | 346 |
| 347 // Asks the renderer to send back FPS. | 347 // Asks the renderer to send back FPS. |
| 348 IPC_MESSAGE_ROUTED0(ChromeViewMsg_GetFPS) | 348 IPC_MESSAGE_ROUTED0(ChromeViewMsg_GetFPS) |
| 349 | 349 |
| 350 // Tells the view it is displaying an interstitial page. | |
| 351 IPC_MESSAGE_ROUTED0(ChromeViewMsg_SetAsInterstitial) | |
| 352 | |
| 353 //----------------------------------------------------------------------------- | 350 //----------------------------------------------------------------------------- |
| 354 // TabContents messages | 351 // TabContents messages |
| 355 // These are messages sent from the renderer to the browser process. | 352 // These are messages sent from the renderer to the browser process. |
| 356 | 353 |
| 357 // Provides the contents for the given page that was loaded recently. | 354 // Provides the contents for the given page that was loaded recently. |
| 358 IPC_MESSAGE_ROUTED3(ChromeViewHostMsg_PageContents, | 355 IPC_MESSAGE_ROUTED3(ChromeViewHostMsg_PageContents, |
| 359 GURL /* URL of the page */, | 356 GURL /* URL of the page */, |
| 360 int32 /* page id */, | 357 int32 /* page id */, |
| 361 string16 /* page contents */) | 358 string16 /* page contents */) |
| 362 | 359 |
| (...skipping 239 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 602 // previous SetCookie message to be processed. | 599 // previous SetCookie message to be processed. |
| 603 IPC_SYNC_MESSAGE_ROUTED2_1(ChromeViewHostMsg_GetCookies, | 600 IPC_SYNC_MESSAGE_ROUTED2_1(ChromeViewHostMsg_GetCookies, |
| 604 GURL /* url */, | 601 GURL /* url */, |
| 605 GURL /* first_party_for_cookies */, | 602 GURL /* first_party_for_cookies */, |
| 606 std::string /* cookies */) | 603 std::string /* cookies */) |
| 607 | 604 |
| 608 // Provide the browser process with current renderer framerate. | 605 // Provide the browser process with current renderer framerate. |
| 609 IPC_MESSAGE_CONTROL2(ChromeViewHostMsg_FPS, | 606 IPC_MESSAGE_CONTROL2(ChromeViewHostMsg_FPS, |
| 610 int /* routing id */, | 607 int /* routing id */, |
| 611 float /* frames per second */) | 608 float /* frames per second */) |
| OLD | NEW |