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 585 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
596 int32 /* page_id */, | 596 int32 /* page_id */, |
597 bool /* result */) | 597 bool /* result */) |
598 | 598 |
599 // The currently displayed PDF has an unsupported feature. | 599 // The currently displayed PDF has an unsupported feature. |
600 IPC_MESSAGE_ROUTED0(ChromeViewHostMsg_PDFHasUnsupportedFeature) | 600 IPC_MESSAGE_ROUTED0(ChromeViewHostMsg_PDFHasUnsupportedFeature) |
601 | 601 |
602 // This message indicates the error appeared in the frame. | 602 // This message indicates the error appeared in the frame. |
603 IPC_MESSAGE_ROUTED1(ChromeViewHostMsg_FrameLoadingError, | 603 IPC_MESSAGE_ROUTED1(ChromeViewHostMsg_FrameLoadingError, |
604 int /* error */) | 604 int /* error */) |
605 | 605 |
| 606 // This message indicates the monitored frame loading had completed. |
| 607 IPC_MESSAGE_ROUTED0(ChromeViewHostMsg_FrameLoadingCompleted) |
| 608 |
606 // The following messages are used to set and get cookies for ChromeFrame | 609 // The following messages are used to set and get cookies for ChromeFrame |
607 // processes. | 610 // processes. |
608 // Used to set a cookie. The cookie is set asynchronously, but will be | 611 // Used to set a cookie. The cookie is set asynchronously, but will be |
609 // available to a subsequent ChromeViewHostMsg_GetCookies request. | 612 // available to a subsequent ChromeViewHostMsg_GetCookies request. |
610 IPC_MESSAGE_ROUTED3(ChromeViewHostMsg_SetCookie, | 613 IPC_MESSAGE_ROUTED3(ChromeViewHostMsg_SetCookie, |
611 GURL /* url */, | 614 GURL /* url */, |
612 GURL /* first_party_for_cookies */, | 615 GURL /* first_party_for_cookies */, |
613 std::string /* cookie */) | 616 std::string /* cookie */) |
614 | 617 |
615 // Used to get cookies for the given URL. This may block waiting for a | 618 // Used to get cookies for the given URL. This may block waiting for a |
616 // previous SetCookie message to be processed. | 619 // previous SetCookie message to be processed. |
617 IPC_SYNC_MESSAGE_ROUTED2_1(ChromeViewHostMsg_GetCookies, | 620 IPC_SYNC_MESSAGE_ROUTED2_1(ChromeViewHostMsg_GetCookies, |
618 GURL /* url */, | 621 GURL /* url */, |
619 GURL /* first_party_for_cookies */, | 622 GURL /* first_party_for_cookies */, |
620 std::string /* cookies */) | 623 std::string /* cookies */) |
621 | 624 |
622 // Provide the browser process with current renderer framerate. | 625 // Provide the browser process with current renderer framerate. |
623 IPC_MESSAGE_CONTROL2(ChromeViewHostMsg_FPS, | 626 IPC_MESSAGE_CONTROL2(ChromeViewHostMsg_FPS, |
624 int /* routing id */, | 627 int /* routing id */, |
625 float /* frames per second */) | 628 float /* frames per second */) |
OLD | NEW |