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 604 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
615 // Sends back stats about the V8 heap. | 615 // Sends back stats about the V8 heap. |
616 IPC_MESSAGE_CONTROL2(ChromeViewHostMsg_V8HeapStats, | 616 IPC_MESSAGE_CONTROL2(ChromeViewHostMsg_V8HeapStats, |
617 int /* size of heap (allocated from the OS) */, | 617 int /* size of heap (allocated from the OS) */, |
618 int /* bytes in use */) | 618 int /* bytes in use */) |
619 | 619 |
620 // Request for a DNS prefetch of the names in the array. | 620 // Request for a DNS prefetch of the names in the array. |
621 // NameList is typedef'ed std::vector<std::string> | 621 // NameList is typedef'ed std::vector<std::string> |
622 IPC_MESSAGE_CONTROL1(ChromeViewHostMsg_DnsPrefetch, | 622 IPC_MESSAGE_CONTROL1(ChromeViewHostMsg_DnsPrefetch, |
623 std::vector<std::string> /* hostnames */) | 623 std::vector<std::string> /* hostnames */) |
624 | 624 |
| 625 // Request for preconnect to host providing resource specified by URL |
| 626 IPC_MESSAGE_CONTROL1(ChromeViewHostMsg_Preconnect, |
| 627 GURL /* preconnect target url */) |
| 628 |
625 // Notifies when a plugin couldn't be loaded because it's outdated. | 629 // Notifies when a plugin couldn't be loaded because it's outdated. |
626 IPC_MESSAGE_ROUTED2(ChromeViewHostMsg_BlockedOutdatedPlugin, | 630 IPC_MESSAGE_ROUTED2(ChromeViewHostMsg_BlockedOutdatedPlugin, |
627 int /* placeholder ID */, | 631 int /* placeholder ID */, |
628 std::string /* plug-in group identifier */) | 632 std::string /* plug-in group identifier */) |
629 | 633 |
630 // Notifies when a plugin couldn't be loaded because it requires | 634 // Notifies when a plugin couldn't be loaded because it requires |
631 // user authorization. | 635 // user authorization. |
632 IPC_MESSAGE_ROUTED2(ChromeViewHostMsg_BlockedUnauthorizedPlugin, | 636 IPC_MESSAGE_ROUTED2(ChromeViewHostMsg_BlockedUnauthorizedPlugin, |
633 string16 /* name */, | 637 string16 /* name */, |
634 std::string /* plug-in group identifier */) | 638 std::string /* plug-in group identifier */) |
(...skipping 105 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
740 // previous SetCookie message to be processed. | 744 // previous SetCookie message to be processed. |
741 IPC_SYNC_MESSAGE_ROUTED2_1(ChromeViewHostMsg_GetCookies, | 745 IPC_SYNC_MESSAGE_ROUTED2_1(ChromeViewHostMsg_GetCookies, |
742 GURL /* url */, | 746 GURL /* url */, |
743 GURL /* first_party_for_cookies */, | 747 GURL /* first_party_for_cookies */, |
744 std::string /* cookies */) | 748 std::string /* cookies */) |
745 | 749 |
746 // Provide the browser process with current renderer framerate. | 750 // Provide the browser process with current renderer framerate. |
747 IPC_MESSAGE_CONTROL2(ChromeViewHostMsg_FPS, | 751 IPC_MESSAGE_CONTROL2(ChromeViewHostMsg_FPS, |
748 int /* routing id */, | 752 int /* routing id */, |
749 float /* frames per second */) | 753 float /* frames per second */) |
OLD | NEW |