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

Unified Diff: Source/web/SpeechRecognitionClientProxy.h

Issue 398673003: Rename WebCore namespace to blink in bindings and web (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 6 years, 5 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/SharedWorkerRepositoryClientImpl.cpp ('k') | Source/web/SpeechRecognitionClientProxy.cpp » ('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 2ed3ea5e04924a3f2a038a86d1338244367cb792..94a7b4b355f2c7d8a3121ad3d0f29ba9516bcc64 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 WebCore::SpeechRecognitionClient, public WebSpeechRecognizerClient {
+class SpeechRecognitionClientProxy FINAL : public blink::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*);
- // WebCore::SpeechRecognitionClient:
- virtual void start(WebCore::SpeechRecognition*, const WebCore::SpeechGrammarList*, const String& lang, bool continuous, bool interimResults, unsigned long maxAlternatives) OVERRIDE;
- virtual void stop(WebCore::SpeechRecognition*) OVERRIDE;
- virtual void abort(WebCore::SpeechRecognition*) OVERRIDE;
+ // 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;
// WebSpeechRecognizerClient:
virtual void didStartAudio(const WebSpeechRecognitionHandle&) OVERRIDE;
« no previous file with comments | « Source/web/SharedWorkerRepositoryClientImpl.cpp ('k') | Source/web/SpeechRecognitionClientProxy.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698