| OLD | NEW |
| 1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2010 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 1054 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1065 // A classification model for client-side phishing detection. | 1065 // A classification model for client-side phishing detection. |
| 1066 // The given file contains an encoded safe_browsing::ClientSideModel | 1066 // The given file contains an encoded safe_browsing::ClientSideModel |
| 1067 // protocol buffer. | 1067 // protocol buffer. |
| 1068 IPC_MESSAGE_CONTROL1(ViewMsg_SetPhishingModel, | 1068 IPC_MESSAGE_CONTROL1(ViewMsg_SetPhishingModel, |
| 1069 IPC::PlatformFileForTransit /* model_file */) | 1069 IPC::PlatformFileForTransit /* model_file */) |
| 1070 | 1070 |
| 1071 // External popup menus. | 1071 // External popup menus. |
| 1072 IPC_MESSAGE_ROUTED1(ViewMsg_SelectPopupMenuItem, | 1072 IPC_MESSAGE_ROUTED1(ViewMsg_SelectPopupMenuItem, |
| 1073 int /* selected index, -1 means no selection */) | 1073 int /* selected index, -1 means no selection */) |
| 1074 | 1074 |
| 1075 // Indicate whether speech input API is enabled or not. | |
| 1076 IPC_MESSAGE_CONTROL1(ViewMsg_SpeechInput_SetFeatureEnabled, | |
| 1077 bool /* enabled */) | |
| 1078 | |
| 1079 // The response to ViewHostMsg_PepperConnectTcp(Address). | 1075 // The response to ViewHostMsg_PepperConnectTcp(Address). |
| 1080 IPC_MESSAGE_ROUTED4(ViewMsg_PepperConnectTcpACK, | 1076 IPC_MESSAGE_ROUTED4(ViewMsg_PepperConnectTcpACK, |
| 1081 int /* request_id */, | 1077 int /* request_id */, |
| 1082 IPC::PlatformFileForTransit /* socket */, | 1078 IPC::PlatformFileForTransit /* socket */, |
| 1083 PP_Flash_NetAddress /* local_addr */, | 1079 PP_Flash_NetAddress /* local_addr */, |
| 1084 PP_Flash_NetAddress /* remote_addr */) | 1080 PP_Flash_NetAddress /* remote_addr */) |
| 1085 | 1081 |
| 1086 //----------------------------------------------------------------------------- | 1082 //----------------------------------------------------------------------------- |
| 1087 // TabContents messages | 1083 // TabContents messages |
| 1088 // These are messages sent from the renderer to the browser process. | 1084 // These are messages sent from the renderer to the browser process. |
| (...skipping 1534 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2623 int /* request_id */, | 2619 int /* request_id */, |
| 2624 PP_Flash_NetAddress /* addr */) | 2620 PP_Flash_NetAddress /* addr */) |
| 2625 | 2621 |
| 2626 // JavaScript related messages ----------------------------------------------- | 2622 // JavaScript related messages ----------------------------------------------- |
| 2627 | 2623 |
| 2628 // Notify the JavaScript engine in the render to change its parameters | 2624 // Notify the JavaScript engine in the render to change its parameters |
| 2629 // while performing stress testing. | 2625 // while performing stress testing. |
| 2630 IPC_MESSAGE_ROUTED2(ViewMsg_JavaScriptStressTestControl, | 2626 IPC_MESSAGE_ROUTED2(ViewMsg_JavaScriptStressTestControl, |
| 2631 int /* cmd */, | 2627 int /* cmd */, |
| 2632 int /* param */) | 2628 int /* param */) |
| OLD | NEW |