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

Unified Diff: content/public/browser/speech_recognition_event_listener.h

Issue 11416310: Revert 170668 (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Created 8 years 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « content/common/speech_recognition_messages.h ('k') | content/public/common/speech_recognition_result.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/public/browser/speech_recognition_event_listener.h
===================================================================
--- content/public/browser/speech_recognition_event_listener.h (revision 170700)
+++ content/public/browser/speech_recognition_event_listener.h (working copy)
@@ -7,11 +7,11 @@
#include "base/basictypes.h"
#include "content/common/content_export.h"
-#include "content/public/common/speech_recognition_result.h"
namespace content {
struct SpeechRecognitionError;
+struct SpeechRecognitionResult;
// The interface to be implemented by consumers interested in receiving
// speech recognition events.
@@ -36,13 +36,13 @@
// Informs that the endpointer has stopped detecting sound (a long silence).
virtual void OnSoundEnd(int session_id) = 0;
- // Invoked when audio capture stops, either due to the endpoint detecting
+ // Invoked when audio capture stops, either due to the endpointer detecting
// silence, an internal error, or an explicit stop was issued.
virtual void OnAudioEnd(int session_id) = 0;
// Invoked when a result is retrieved.
- virtual void OnRecognitionResults(int session_id,
- const SpeechRecognitionResults& results) = 0;
+ virtual void OnRecognitionResult(int session_id,
+ const SpeechRecognitionResult& result) = 0;
// Invoked if there was an error while capturing or recognizing audio.
// The recognition has already been cancelled when this call is made and
« no previous file with comments | « content/common/speech_recognition_messages.h ('k') | content/public/common/speech_recognition_result.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698