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

Unified Diff: third_party/WebKit/public/web/WebSpeechRecognizer.h

Issue 2388103002: reflow comments in public/web (Closed)
Patch Set: Created 4 years, 2 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 side-by-side diff with in-line comments
Download patch
Index: third_party/WebKit/public/web/WebSpeechRecognizer.h
diff --git a/third_party/WebKit/public/web/WebSpeechRecognizer.h b/third_party/WebKit/public/web/WebSpeechRecognizer.h
index 1d3d248817ffdb222afb11270af2364a7e58b177..649dda139486de831e30a237147335fbde25ccc5 100644
--- a/third_party/WebKit/public/web/WebSpeechRecognizer.h
+++ b/third_party/WebKit/public/web/WebSpeechRecognizer.h
@@ -37,16 +37,21 @@ class WebSpeechRecognizerClient;
// Interface for speech recognition, to be implemented by the embedder.
class WebSpeechRecognizer {
public:
- // Start speech recognition for the specified handle using the specified parameters. Notifications on progress, results, and errors will be sent via the client.
+ // Start speech recognition for the specified handle using the specified
+ // parameters. Notifications on progress, results, and errors will be sent via
+ // the client.
virtual void start(const WebSpeechRecognitionHandle&,
const WebSpeechRecognitionParams&,
WebSpeechRecognizerClient*) = 0;
- // Stop speech recognition for the specified handle, returning any results for the audio recorded so far. Notifications and errors are sent via the client.
+ // Stop speech recognition for the specified handle, returning any results for
+ // the audio recorded so far. Notifications and errors are sent via the
+ // client.
virtual void stop(const WebSpeechRecognitionHandle&,
WebSpeechRecognizerClient*) = 0;
- // Abort speech recognition for the specified handle, discarding any recorded audio. Notifications and errors are sent via the client.
+ // Abort speech recognition for the specified handle, discarding any recorded
+ // audio. Notifications and errors are sent via the client.
virtual void abort(const WebSpeechRecognitionHandle&,
WebSpeechRecognizerClient*) = 0;
« no previous file with comments | « third_party/WebKit/public/web/WebSpeechRecognitionHandle.h ('k') | third_party/WebKit/public/web/WebSurroundingText.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698