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 689 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
700 IPC_MESSAGE_ROUTED2(ChromeViewHostMsg_SetVoiceSearchSupported, | 700 IPC_MESSAGE_ROUTED2(ChromeViewHostMsg_SetVoiceSearchSupported, |
701 int /* page_seq_no */, | 701 int /* page_seq_no */, |
702 bool /* supported */) | 702 bool /* supported */) |
703 | 703 |
704 // Tells the renderer a list of URLs which should be bounced back to the browser | 704 // Tells the renderer a list of URLs which should be bounced back to the browser |
705 // process so that they can be assigned to an Instant renderer. | 705 // process so that they can be assigned to an Instant renderer. |
706 IPC_MESSAGE_CONTROL2(ChromeViewMsg_SetSearchURLs, | 706 IPC_MESSAGE_CONTROL2(ChromeViewMsg_SetSearchURLs, |
707 std::vector<GURL> /* search_urls */, | 707 std::vector<GURL> /* search_urls */, |
708 GURL /* new_tab_page_url */) | 708 GURL /* new_tab_page_url */) |
709 | 709 |
710 // TODO(thestig) Eventually separate out all the extensions message. | |
Devlin
2014/06/06 20:57:23
nit: s/message/messages.
Lei Zhang
2014/06/06 21:31:35
Done.
| |
711 #if defined(ENABLE_EXTENSIONS) | |
710 // Tells listeners that a detailed message was reported to the console by | 712 // Tells listeners that a detailed message was reported to the console by |
711 // WebKit. | 713 // WebKit. |
712 IPC_MESSAGE_ROUTED4(ChromeViewHostMsg_DetailedConsoleMessageAdded, | 714 IPC_MESSAGE_ROUTED4(ChromeViewHostMsg_DetailedConsoleMessageAdded, |
713 base::string16 /* message */, | 715 base::string16 /* message */, |
714 base::string16 /* source */, | 716 base::string16 /* source */, |
715 extensions::StackTrace /* stack trace */, | 717 extensions::StackTrace /* stack trace */, |
716 int32 /* severity level */) | 718 int32 /* severity level */) |
719 #endif | |
717 | 720 |
718 #if defined(ENABLE_PLUGINS) | 721 #if defined(ENABLE_PLUGINS) |
719 // Sent by the renderer to check if crash reporting is enabled. | 722 // Sent by the renderer to check if crash reporting is enabled. |
720 IPC_SYNC_MESSAGE_CONTROL0_1(ChromeViewHostMsg_IsCrashReportingEnabled, | 723 IPC_SYNC_MESSAGE_CONTROL0_1(ChromeViewHostMsg_IsCrashReportingEnabled, |
721 bool /* enabled */) | 724 bool /* enabled */) |
722 #endif | 725 #endif |
OLD | NEW |