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 |
350 //----------------------------------------------------------------------------- | 353 //----------------------------------------------------------------------------- |
351 // TabContents messages | 354 // TabContents messages |
352 // These are messages sent from the renderer to the browser process. | 355 // These are messages sent from the renderer to the browser process. |
353 | 356 |
354 // Provides the contents for the given page that was loaded recently. | 357 // Provides the contents for the given page that was loaded recently. |
355 IPC_MESSAGE_ROUTED3(ChromeViewHostMsg_PageContents, | 358 IPC_MESSAGE_ROUTED3(ChromeViewHostMsg_PageContents, |
356 GURL /* URL of the page */, | 359 GURL /* URL of the page */, |
357 int32 /* page id */, | 360 int32 /* page id */, |
358 string16 /* page contents */) | 361 string16 /* page contents */) |
359 | 362 |
(...skipping 239 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
599 // previous SetCookie message to be processed. | 602 // previous SetCookie message to be processed. |
600 IPC_SYNC_MESSAGE_ROUTED2_1(ChromeViewHostMsg_GetCookies, | 603 IPC_SYNC_MESSAGE_ROUTED2_1(ChromeViewHostMsg_GetCookies, |
601 GURL /* url */, | 604 GURL /* url */, |
602 GURL /* first_party_for_cookies */, | 605 GURL /* first_party_for_cookies */, |
603 std::string /* cookies */) | 606 std::string /* cookies */) |
604 | 607 |
605 // Provide the browser process with current renderer framerate. | 608 // Provide the browser process with current renderer framerate. |
606 IPC_MESSAGE_CONTROL2(ChromeViewHostMsg_FPS, | 609 IPC_MESSAGE_CONTROL2(ChromeViewHostMsg_FPS, |
607 int /* routing id */, | 610 int /* routing id */, |
608 float /* frames per second */) | 611 float /* frames per second */) |
OLD | NEW |