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

Unified Diff: Source/web/SpeechRecognitionClientProxy.h

Issue 474183002: Cleanup namespace usage in Source/web/*.h (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 6 years, 4 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
« no previous file with comments | « Source/web/ServiceWorkerGlobalScopeProxy.h ('k') | Source/web/UserMediaClientImpl.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/web/SpeechRecognitionClientProxy.h
diff --git a/Source/web/SpeechRecognitionClientProxy.h b/Source/web/SpeechRecognitionClientProxy.h
index 94a7b4b355f2c7d8a3121ad3d0f29ba9516bcc64..4ce3cc323e499a9cc919c608c0e1f784b4bac332 100644
--- a/Source/web/SpeechRecognitionClientProxy.h
+++ b/Source/web/SpeechRecognitionClientProxy.h
@@ -37,7 +37,7 @@ namespace blink {
class WebSpeechRecognizer;
class WebString;
-class SpeechRecognitionClientProxy FINAL : public blink::SpeechRecognitionClient, public WebSpeechRecognizerClient {
+class SpeechRecognitionClientProxy FINAL : public SpeechRecognitionClient, public WebSpeechRecognizerClient {
public:
virtual ~SpeechRecognitionClientProxy();
@@ -45,10 +45,10 @@ public:
// itself, but attempting to call start/stop/abort on it will crash.
static PassOwnPtr<SpeechRecognitionClientProxy> create(WebSpeechRecognizer*);
- // blink::SpeechRecognitionClient:
- virtual void start(blink::SpeechRecognition*, const blink::SpeechGrammarList*, const String& lang, bool continuous, bool interimResults, unsigned long maxAlternatives) OVERRIDE;
- virtual void stop(blink::SpeechRecognition*) OVERRIDE;
- virtual void abort(blink::SpeechRecognition*) OVERRIDE;
+ // SpeechRecognitionClient:
+ virtual void start(SpeechRecognition*, const SpeechGrammarList*, const String& lang, bool continuous, bool interimResults, unsigned long maxAlternatives) OVERRIDE;
+ virtual void stop(SpeechRecognition*) OVERRIDE;
+ virtual void abort(SpeechRecognition*) OVERRIDE;
// WebSpeechRecognizerClient:
virtual void didStartAudio(const WebSpeechRecognitionHandle&) OVERRIDE;
« no previous file with comments | « Source/web/ServiceWorkerGlobalScopeProxy.h ('k') | Source/web/UserMediaClientImpl.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698