| OLD | NEW |
| 1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 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 #include <map> | 5 #include <map> |
| 6 #include <set> | 6 #include <set> |
| 7 #include <string> | 7 #include <string> |
| 8 #include <vector> | 8 #include <vector> |
| 9 | 9 |
| 10 #include "build/build_config.h" | 10 #include "build/build_config.h" |
| (...skipping 1050 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1061 IPC_MESSAGE_ROUTED0(ViewMsg_GetMalwareDOMDetails) | 1061 IPC_MESSAGE_ROUTED0(ViewMsg_GetMalwareDOMDetails) |
| 1062 | 1062 |
| 1063 // Tells the renderer to begin phishing detection for the given toplevel URL | 1063 // Tells the renderer to begin phishing detection for the given toplevel URL |
| 1064 // which it has started loading. | 1064 // which it has started loading. |
| 1065 IPC_MESSAGE_ROUTED1(ViewMsg_StartPhishingDetection, GURL) | 1065 IPC_MESSAGE_ROUTED1(ViewMsg_StartPhishingDetection, GURL) |
| 1066 | 1066 |
| 1067 // External popup menus. | 1067 // External popup menus. |
| 1068 IPC_MESSAGE_ROUTED1(ViewMsg_SelectPopupMenuItem, | 1068 IPC_MESSAGE_ROUTED1(ViewMsg_SelectPopupMenuItem, |
| 1069 int /* selected index, -1 means no selection */) | 1069 int /* selected index, -1 means no selection */) |
| 1070 | 1070 |
| 1071 // Indicate whether speech input API is enabled or not. | |
| 1072 IPC_MESSAGE_CONTROL1(ViewMsg_SpeechInput_SetFeatureEnabled, | |
| 1073 bool /* enabled */) | |
| 1074 | |
| 1075 // Sent in response to a ViewHostMsg_ContextMenu to let the renderer know that | 1071 // Sent in response to a ViewHostMsg_ContextMenu to let the renderer know that |
| 1076 // the menu has been closed. | 1072 // the menu has been closed. |
| 1077 IPC_MESSAGE_ROUTED1(ViewMsg_ContextMenuClosed, | 1073 IPC_MESSAGE_ROUTED1(ViewMsg_ContextMenuClosed, |
| 1078 webkit_glue::CustomContextMenuContext /* custom_context */) | 1074 webkit_glue::CustomContextMenuContext /* custom_context */) |
| 1079 | 1075 |
| 1080 //----------------------------------------------------------------------------- | 1076 //----------------------------------------------------------------------------- |
| 1081 // TabContents messages | 1077 // TabContents messages |
| 1082 // These are messages sent from the renderer to the browser process. | 1078 // These are messages sent from the renderer to the browser process. |
| 1083 | 1079 |
| 1084 // Sent by the renderer when it is creating a new window. The browser creates | 1080 // Sent by the renderer when it is creating a new window. The browser creates |
| (...skipping 1460 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2545 // while performing stress testing. | 2541 // while performing stress testing. |
| 2546 IPC_MESSAGE_ROUTED2(ViewMsg_JavaScriptStressTestControl, | 2542 IPC_MESSAGE_ROUTED2(ViewMsg_JavaScriptStressTestControl, |
| 2547 int /* cmd */, | 2543 int /* cmd */, |
| 2548 int /* param */) | 2544 int /* param */) |
| 2549 | 2545 |
| 2550 // Register a new handler for URL requests with the given scheme. | 2546 // Register a new handler for URL requests with the given scheme. |
| 2551 IPC_MESSAGE_ROUTED3(ViewHostMsg_RegisterProtocolHandler, | 2547 IPC_MESSAGE_ROUTED3(ViewHostMsg_RegisterProtocolHandler, |
| 2552 std::string /* scheme */, | 2548 std::string /* scheme */, |
| 2553 GURL /* url */, | 2549 GURL /* url */, |
| 2554 string16 /* title */) | 2550 string16 /* title */) |
| OLD | NEW |