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 577 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
588 // A renderer sends this to the browser process to display infobar | 588 // A renderer sends this to the browser process to display infobar |
589 IPC_MESSAGE_CONTROL2(ChromeViewHostMsg_NaClErrorStatus, | 589 IPC_MESSAGE_CONTROL2(ChromeViewHostMsg_NaClErrorStatus, |
590 int /* render_view_id */, | 590 int /* render_view_id */, |
591 int /* Error ID */) | 591 int /* Error ID */) |
592 | 592 |
593 // A renderer sends this to the browser process when it wants to | 593 // A renderer sends this to the browser process when it wants to |
594 // open a NaCl executable file from an installed application directory. | 594 // open a NaCl executable file from an installed application directory. |
595 IPC_SYNC_MESSAGE_CONTROL2_2(ChromeViewHostMsg_OpenNaClExecutable, | 595 IPC_SYNC_MESSAGE_CONTROL2_2(ChromeViewHostMsg_OpenNaClExecutable, |
596 int /* render_view_id */, | 596 int /* render_view_id */, |
597 GURL /* URL of NaCl executable file */, | 597 GURL /* URL of NaCl executable file */, |
598 base::FilePath /* absolute path to opened file */, | 598 IPC::PlatformFileForTransit /* output file */, |
599 IPC::PlatformFileForTransit /* output file */) | 599 uint64_t /* nonce */) |
600 | 600 |
601 // Notification that the page has an OpenSearch description document | 601 // Notification that the page has an OpenSearch description document |
602 // associated with it. | 602 // associated with it. |
603 IPC_MESSAGE_ROUTED3(ChromeViewHostMsg_PageHasOSDD, | 603 IPC_MESSAGE_ROUTED3(ChromeViewHostMsg_PageHasOSDD, |
604 int32 /* page_id */, | 604 int32 /* page_id */, |
605 GURL /* url of OS description document */, | 605 GURL /* url of OS description document */, |
606 search_provider::OSDDType) | 606 search_provider::OSDDType) |
607 | 607 |
608 // Find out if the given url's security origin is installed as a search | 608 // Find out if the given url's security origin is installed as a search |
609 // provider. | 609 // provider. |
(...skipping 129 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
739 // previous SetCookie message to be processed. | 739 // previous SetCookie message to be processed. |
740 IPC_SYNC_MESSAGE_ROUTED2_1(ChromeViewHostMsg_GetCookies, | 740 IPC_SYNC_MESSAGE_ROUTED2_1(ChromeViewHostMsg_GetCookies, |
741 GURL /* url */, | 741 GURL /* url */, |
742 GURL /* first_party_for_cookies */, | 742 GURL /* first_party_for_cookies */, |
743 std::string /* cookies */) | 743 std::string /* cookies */) |
744 | 744 |
745 // Provide the browser process with current renderer framerate. | 745 // Provide the browser process with current renderer framerate. |
746 IPC_MESSAGE_CONTROL2(ChromeViewHostMsg_FPS, | 746 IPC_MESSAGE_CONTROL2(ChromeViewHostMsg_FPS, |
747 int /* routing id */, | 747 int /* routing id */, |
748 float /* frames per second */) | 748 float /* frames per second */) |
OLD | NEW |