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

Side by Side Diff: third_party/WebKit/public/web/WebSpeechRecognizer.h

Issue 1851293002: Remove BLINK_ASSERT() and BLINK_ASSERT_NOT_REACHED() macros. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Check the |callbacks| for nullptr and use explicit delete. Created 4 years, 8 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
OLDNEW
1 /* 1 /*
2 * Copyright (C) 2012 Google Inc. All rights reserved. 2 * Copyright (C) 2012 Google Inc. All rights reserved.
3 * 3 *
4 * Redistribution and use in source and binary forms, with or without 4 * Redistribution and use in source and binary forms, with or without
5 * modification, are permitted provided that the following conditions 5 * modification, are permitted provided that the following conditions
6 * are met: 6 * are met:
7 * * Redistributions of source code must retain the above copyright 7 * * Redistributions of source code must retain the above copyright
8 * notice, this list of conditions and the following disclaimer. 8 * notice, this list of conditions and the following disclaimer.
9 * * Redistributions in binary form must reproduce the above copyright 9 * * Redistributions in binary form must reproduce the above copyright
10 * notice, this list of conditions and the following disclaimer in the 10 * notice, this list of conditions and the following disclaimer in the
(...skipping 20 matching lines...) Expand all
31 31
32 namespace blink { 32 namespace blink {
33 33
34 class WebSpeechRecognitionParams; 34 class WebSpeechRecognitionParams;
35 class WebSpeechRecognizerClient; 35 class WebSpeechRecognizerClient;
36 36
37 // Interface for speech recognition, to be implemented by the embedder. 37 // Interface for speech recognition, to be implemented by the embedder.
38 class WebSpeechRecognizer { 38 class WebSpeechRecognizer {
39 public: 39 public:
40 // Start speech recognition for the specified handle using the specified par ameters. Notifications on progress, results, and errors will be sent via the cli ent. 40 // Start speech recognition for the specified handle using the specified par ameters. Notifications on progress, results, and errors will be sent via the cli ent.
41 virtual void start(const WebSpeechRecognitionHandle&, const WebSpeechRecogni tionParams&, WebSpeechRecognizerClient*) { BLINK_ASSERT_NOT_REACHED(); } 41 virtual void start(const WebSpeechRecognitionHandle&, const WebSpeechRecogni tionParams&, WebSpeechRecognizerClient*) = 0;
42 42
43 // Stop speech recognition for the specified handle, returning any results f or the audio recorded so far. Notifications and errors are sent via the client. 43 // Stop speech recognition for the specified handle, returning any results f or the audio recorded so far. Notifications and errors are sent via the client.
44 virtual void stop(const WebSpeechRecognitionHandle&, WebSpeechRecognizerClie nt*) { BLINK_ASSERT_NOT_REACHED(); } 44 virtual void stop(const WebSpeechRecognitionHandle&, WebSpeechRecognizerClie nt*) = 0;
45 45
46 // Abort speech recognition for the specified handle, discarding any recorde d audio. Notifications and errors are sent via the client. 46 // Abort speech recognition for the specified handle, discarding any recorde d audio. Notifications and errors are sent via the client.
47 virtual void abort(const WebSpeechRecognitionHandle&, WebSpeechRecognizerCli ent*) { BLINK_ASSERT_NOT_REACHED(); } 47 virtual void abort(const WebSpeechRecognitionHandle&, WebSpeechRecognizerCli ent*) = 0;
48 48
49 protected: 49 protected:
50 virtual ~WebSpeechRecognizer() { } 50 virtual ~WebSpeechRecognizer() { }
51 }; 51 };
52 52
53 } // namespace blink 53 } // namespace blink
54 54
55 #endif // WebSpeechRecognizer_h 55 #endif // WebSpeechRecognizer_h
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698