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 <stdint.h> | 6 #include <stdint.h> |
7 #include <map> | 7 #include <map> |
8 #include <set> | 8 #include <set> |
9 #include <string> | 9 #include <string> |
10 #include <vector> | 10 #include <vector> |
(...skipping 527 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
538 IPC_SYNC_MESSAGE_ROUTED2_1(ChromeViewHostMsg_GetSearchProviderInstallState, | 538 IPC_SYNC_MESSAGE_ROUTED2_1(ChromeViewHostMsg_GetSearchProviderInstallState, |
539 GURL /* page url */, | 539 GURL /* page url */, |
540 GURL /* inquiry url */, | 540 GURL /* inquiry url */, |
541 search_provider::InstallState /* install */) | 541 search_provider::InstallState /* install */) |
542 | 542 |
543 // Sends back stats about the V8 heap. | 543 // Sends back stats about the V8 heap. |
544 IPC_MESSAGE_CONTROL2(ChromeViewHostMsg_V8HeapStats, | 544 IPC_MESSAGE_CONTROL2(ChromeViewHostMsg_V8HeapStats, |
545 int /* size of heap (allocated from the OS) */, | 545 int /* size of heap (allocated from the OS) */, |
546 int /* bytes in use */) | 546 int /* bytes in use */) |
547 | 547 |
548 // Request for preconnect to host providing resource specified by URL | |
549 IPC_MESSAGE_CONTROL1(ChromeViewHostMsg_Preconnect, | |
550 GURL /* preconnect target url */) | |
551 | |
552 // Notifies when a plugin couldn't be loaded because it's outdated. | 548 // Notifies when a plugin couldn't be loaded because it's outdated. |
553 IPC_MESSAGE_ROUTED2(ChromeViewHostMsg_BlockedOutdatedPlugin, | 549 IPC_MESSAGE_ROUTED2(ChromeViewHostMsg_BlockedOutdatedPlugin, |
554 int /* placeholder ID */, | 550 int /* placeholder ID */, |
555 std::string /* plug-in group identifier */) | 551 std::string /* plug-in group identifier */) |
556 | 552 |
557 // Notifies when a plugin couldn't be loaded because it requires | 553 // Notifies when a plugin couldn't be loaded because it requires |
558 // user authorization. | 554 // user authorization. |
559 IPC_MESSAGE_ROUTED2(ChromeViewHostMsg_BlockedUnauthorizedPlugin, | 555 IPC_MESSAGE_ROUTED2(ChromeViewHostMsg_BlockedUnauthorizedPlugin, |
560 base::string16 /* name */, | 556 base::string16 /* name */, |
561 std::string /* plug-in group identifier */) | 557 std::string /* plug-in group identifier */) |
(...skipping 104 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
666 | 662 |
667 #if defined(ENABLE_PLUGINS) | 663 #if defined(ENABLE_PLUGINS) |
668 // Sent by the renderer to check if crash reporting is enabled. | 664 // Sent by the renderer to check if crash reporting is enabled. |
669 IPC_SYNC_MESSAGE_CONTROL0_1(ChromeViewHostMsg_IsCrashReportingEnabled, | 665 IPC_SYNC_MESSAGE_CONTROL0_1(ChromeViewHostMsg_IsCrashReportingEnabled, |
670 bool /* enabled */) | 666 bool /* enabled */) |
671 #endif | 667 #endif |
672 | 668 |
673 // Sent by the renderer to indicate that a fields trial has been activated. | 669 // Sent by the renderer to indicate that a fields trial has been activated. |
674 IPC_MESSAGE_CONTROL1(ChromeViewHostMsg_FieldTrialActivated, | 670 IPC_MESSAGE_CONTROL1(ChromeViewHostMsg_FieldTrialActivated, |
675 std::string /* name */) | 671 std::string /* name */) |
OLD | NEW |