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 594 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
605 IPC_SYNC_MESSAGE_CONTROL0_1(ChromeViewHostMsg_NaClCreateTemporaryFile, | 605 IPC_SYNC_MESSAGE_CONTROL0_1(ChromeViewHostMsg_NaClCreateTemporaryFile, |
606 IPC::PlatformFileForTransit /* out file */) | 606 IPC::PlatformFileForTransit /* out file */) |
607 | 607 |
608 // A renderer sends this to the browser process to display infobar | 608 // A renderer sends this to the browser process to display infobar |
609 IPC_MESSAGE_CONTROL2(ChromeViewHostMsg_NaClErrorStatus, | 609 IPC_MESSAGE_CONTROL2(ChromeViewHostMsg_NaClErrorStatus, |
610 int /* render_view_id */, | 610 int /* render_view_id */, |
611 int /* Error ID */) | 611 int /* Error ID */) |
612 | 612 |
613 // A renderer sends this to the browser process when it wants to | 613 // A renderer sends this to the browser process when it wants to |
614 // open a NaCl executable file from an installed application directory. | 614 // open a NaCl executable file from an installed application directory. |
615 IPC_SYNC_MESSAGE_CONTROL2_2(ChromeViewHostMsg_OpenNaClExecutable, | 615 IPC_SYNC_MESSAGE_CONTROL2_3(ChromeViewHostMsg_OpenNaClExecutable, |
616 int /* render_view_id */, | 616 int /* render_view_id */, |
617 GURL /* URL of NaCl executable file */, | 617 GURL /* URL of NaCl executable file */, |
618 base::FilePath /* absolute path to opened file */, | 618 IPC::PlatformFileForTransit /* output file */, |
619 IPC::PlatformFileForTransit /* output file */) | 619 uint64_t /* file_token_lo */, |
| 620 uint64_t /* file_token_hi */) |
620 | 621 |
621 // Notification that the page has an OpenSearch description document | 622 // Notification that the page has an OpenSearch description document |
622 // associated with it. | 623 // associated with it. |
623 IPC_MESSAGE_ROUTED3(ChromeViewHostMsg_PageHasOSDD, | 624 IPC_MESSAGE_ROUTED3(ChromeViewHostMsg_PageHasOSDD, |
624 int32 /* page_id */, | 625 int32 /* page_id */, |
625 GURL /* url of OS description document */, | 626 GURL /* url of OS description document */, |
626 search_provider::OSDDType) | 627 search_provider::OSDDType) |
627 | 628 |
628 // Find out if the given url's security origin is installed as a search | 629 // Find out if the given url's security origin is installed as a search |
629 // provider. | 630 // provider. |
(...skipping 130 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
760 // previous SetCookie message to be processed. | 761 // previous SetCookie message to be processed. |
761 IPC_SYNC_MESSAGE_ROUTED2_1(ChromeViewHostMsg_GetCookies, | 762 IPC_SYNC_MESSAGE_ROUTED2_1(ChromeViewHostMsg_GetCookies, |
762 GURL /* url */, | 763 GURL /* url */, |
763 GURL /* first_party_for_cookies */, | 764 GURL /* first_party_for_cookies */, |
764 std::string /* cookies */) | 765 std::string /* cookies */) |
765 | 766 |
766 // Provide the browser process with current renderer framerate. | 767 // Provide the browser process with current renderer framerate. |
767 IPC_MESSAGE_CONTROL2(ChromeViewHostMsg_FPS, | 768 IPC_MESSAGE_CONTROL2(ChromeViewHostMsg_FPS, |
768 int /* routing id */, | 769 int /* routing id */, |
769 float /* frames per second */) | 770 float /* frames per second */) |
OLD | NEW |