Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(13)

Side by Side Diff: chrome/common/render_messages_internal.h

Issue 6133006: Enable speech input by default and remove unused code. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: . Created 9 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « chrome/common/chrome_switches.cc ('k') | chrome/renderer/render_thread.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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
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 */)
OLDNEW
« no previous file with comments | « chrome/common/chrome_switches.cc ('k') | chrome/renderer/render_thread.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698