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 // This header is meant to be included in multiple passes, hence no traditional | 5 // This header is meant to be included in multiple passes, hence no traditional |
6 // header guard. | 6 // header guard. |
7 // See ipc_message_macros.h for explanation of the macros and passes. | 7 // See ipc_message_macros.h for explanation of the macros and passes. |
8 | 8 |
9 #include <map> | 9 #include <map> |
10 #include <string> | 10 #include <string> |
(...skipping 958 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
969 | 969 |
970 // Relay a request from assistive technology to set focus to a given node. | 970 // Relay a request from assistive technology to set focus to a given node. |
971 IPC_MESSAGE_ROUTED1(ViewMsg_SetAccessibilityFocus, | 971 IPC_MESSAGE_ROUTED1(ViewMsg_SetAccessibilityFocus, |
972 int /* object id */) | 972 int /* object id */) |
973 | 973 |
974 // Relay a request from assistive technology to perform the default action | 974 // Relay a request from assistive technology to perform the default action |
975 // on a given node. | 975 // on a given node. |
976 IPC_MESSAGE_ROUTED1(ViewMsg_AccessibilityDoDefaultAction, | 976 IPC_MESSAGE_ROUTED1(ViewMsg_AccessibilityDoDefaultAction, |
977 int /* object id */) | 977 int /* object id */) |
978 | 978 |
| 979 // Relay a speech recognition result, either partial or final. |
| 980 IPC_MESSAGE_ROUTED1(ViewMsg_SpeechInput_SetRecognitionResult, |
| 981 string16 /* result */) |
| 982 |
| 983 // Indicate that speech recognizer has stopped recording and started |
| 984 // recognition. |
| 985 IPC_MESSAGE_ROUTED0(ViewMsg_SpeechInput_RecordingComplete) |
| 986 |
| 987 // Indicate that speech recognizer has completed recognition. This will be |
| 988 // the last message sent in response to a |
| 989 // ViewHostMsg_SpeechInput_StartRecognition. |
| 990 IPC_MESSAGE_ROUTED0(ViewMsg_SpeechInput_RecognitionComplete) |
| 991 |
979 IPC_END_MESSAGES(View) | 992 IPC_END_MESSAGES(View) |
980 | 993 |
981 | 994 |
982 //----------------------------------------------------------------------------- | 995 //----------------------------------------------------------------------------- |
983 // TabContents messages | 996 // TabContents messages |
984 // These are messages sent from the renderer to the browser process. | 997 // These are messages sent from the renderer to the browser process. |
985 | 998 |
986 IPC_BEGIN_MESSAGES(ViewHost) | 999 IPC_BEGIN_MESSAGES(ViewHost) |
987 // Sent by the renderer when it is creating a new window. The browser creates | 1000 // Sent by the renderer when it is creating a new window. The browser creates |
988 // a tab for it and responds with a ViewMsg_CreatingNew_ACK. If route_id is | 1001 // a tab for it and responds with a ViewMsg_CreatingNew_ACK. If route_id is |
(...skipping 1539 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2528 | 2541 |
2529 // Send the tree of accessibility data to the browser, where it's cached | 2542 // Send the tree of accessibility data to the browser, where it's cached |
2530 // in order to respond to OS accessibility queries immediately. | 2543 // in order to respond to OS accessibility queries immediately. |
2531 IPC_MESSAGE_ROUTED1(ViewHostMsg_AccessibilityTree, | 2544 IPC_MESSAGE_ROUTED1(ViewHostMsg_AccessibilityTree, |
2532 webkit_glue::WebAccessibility) | 2545 webkit_glue::WebAccessibility) |
2533 | 2546 |
2534 // Notifies the TabContents that the content being displayed is PDF. | 2547 // Notifies the TabContents that the content being displayed is PDF. |
2535 // This allows the browser to handle things such as zooming differently. | 2548 // This allows the browser to handle things such as zooming differently. |
2536 IPC_MESSAGE_ROUTED0(ViewHostMsg_SetDisplayingPDFContent) | 2549 IPC_MESSAGE_ROUTED0(ViewHostMsg_SetDisplayingPDFContent) |
2537 | 2550 |
| 2551 // Requests the speech input service to start speech recognition on behalf of |
| 2552 // the given |render_view_id|. |
| 2553 IPC_MESSAGE_CONTROL1(ViewHostMsg_SpeechInput_StartRecognition, |
| 2554 int /* render_view_id */) |
| 2555 |
| 2556 // Requests the speech input service to cancel speech recognition on behalf of |
| 2557 // the given |render_view_id|. If speech recognition is not happening nor or |
| 2558 // is happening on behalf of some other render view, this call does nothing. |
| 2559 IPC_MESSAGE_CONTROL1(ViewHostMsg_SpeechInput_CancelRecognition, |
| 2560 int /* render_view_id */) |
| 2561 |
| 2562 // Requests the speech input service to stop audio recording on behalf of |
| 2563 // the given |render_view_id|. Any audio recorded so far will be fed to the |
| 2564 // speech recognizer. If speech recognition is not happening nor or is |
| 2565 // happening on behalf of some other render view, this call does nothing. |
| 2566 IPC_MESSAGE_CONTROL1(ViewHostMsg_SpeechInput_StopRecording, |
| 2567 int /* render_view_id */) |
| 2568 |
2538 IPC_END_MESSAGES(ViewHost) | 2569 IPC_END_MESSAGES(ViewHost) |
OLD | NEW |