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

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

Issue 6610022: Enable speech input by default and remove unused code. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 9 years, 9 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) 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
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
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 */)
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