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