| 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 1062 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1073 // A classification model for client-side phishing detection. | 1073 // A classification model for client-side phishing detection. |
| 1074 // The given file contains an encoded safe_browsing::ClientSideModel | 1074 // The given file contains an encoded safe_browsing::ClientSideModel |
| 1075 // protocol buffer. | 1075 // protocol buffer. |
| 1076 IPC_MESSAGE_CONTROL1(ViewMsg_SetPhishingModel, | 1076 IPC_MESSAGE_CONTROL1(ViewMsg_SetPhishingModel, |
| 1077 IPC::PlatformFileForTransit /* model_file */) | 1077 IPC::PlatformFileForTransit /* model_file */) |
| 1078 | 1078 |
| 1079 // External popup menus. | 1079 // External popup menus. |
| 1080 IPC_MESSAGE_ROUTED1(ViewMsg_SelectPopupMenuItem, | 1080 IPC_MESSAGE_ROUTED1(ViewMsg_SelectPopupMenuItem, |
| 1081 int /* selected index, -1 means no selection */) | 1081 int /* selected index, -1 means no selection */) |
| 1082 | 1082 |
| 1083 // Indicate whether speech input API is enabled or not. |
| 1084 IPC_MESSAGE_CONTROL1(ViewMsg_SpeechInput_SetFeatureEnabled, |
| 1085 bool /* enabled */) |
| 1086 |
| 1083 // The response to ViewHostMsg_PepperConnectTcp(Address). | 1087 // The response to ViewHostMsg_PepperConnectTcp(Address). |
| 1084 IPC_MESSAGE_ROUTED4(ViewMsg_PepperConnectTcpACK, | 1088 IPC_MESSAGE_ROUTED4(ViewMsg_PepperConnectTcpACK, |
| 1085 int /* request_id */, | 1089 int /* request_id */, |
| 1086 IPC::PlatformFileForTransit /* socket */, | 1090 IPC::PlatformFileForTransit /* socket */, |
| 1087 PP_Flash_NetAddress /* local_addr */, | 1091 PP_Flash_NetAddress /* local_addr */, |
| 1088 PP_Flash_NetAddress /* remote_addr */) | 1092 PP_Flash_NetAddress /* remote_addr */) |
| 1089 | 1093 |
| 1090 // Sent in response to a ViewHostMsg_ContextMenu to let the renderer know that | 1094 // Sent in response to a ViewHostMsg_ContextMenu to let the renderer know that |
| 1091 // the menu has been closed. | 1095 // the menu has been closed. |
| 1092 IPC_MESSAGE_ROUTED0(ViewMsg_ContextMenuClosed) | 1096 IPC_MESSAGE_ROUTED0(ViewMsg_ContextMenuClosed) |
| (...skipping 1537 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2630 int /* request_id */, | 2634 int /* request_id */, |
| 2631 PP_Flash_NetAddress /* addr */) | 2635 PP_Flash_NetAddress /* addr */) |
| 2632 | 2636 |
| 2633 // JavaScript related messages ----------------------------------------------- | 2637 // JavaScript related messages ----------------------------------------------- |
| 2634 | 2638 |
| 2635 // Notify the JavaScript engine in the render to change its parameters | 2639 // Notify the JavaScript engine in the render to change its parameters |
| 2636 // while performing stress testing. | 2640 // while performing stress testing. |
| 2637 IPC_MESSAGE_ROUTED2(ViewMsg_JavaScriptStressTestControl, | 2641 IPC_MESSAGE_ROUTED2(ViewMsg_JavaScriptStressTestControl, |
| 2638 int /* cmd */, | 2642 int /* cmd */, |
| 2639 int /* param */) | 2643 int /* param */) |
| OLD | NEW |