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

Unified Diff: Source/web/WebSpeechRecognitionHandle.cpp

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/WebSpeechGrammar.cpp ('k') | Source/web/WebSpeechRecognitionResult.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/web/WebSpeechRecognitionHandle.cpp
diff --git a/Source/web/WebSpeechRecognitionHandle.cpp b/Source/web/WebSpeechRecognitionHandle.cpp
index 42cae0ecd1bd9a3ac24feb5e04a63a159b803a44..2f4c85388865765690e9e467e2709c63479887ba 100644
--- a/Source/web/WebSpeechRecognitionHandle.cpp
+++ b/Source/web/WebSpeechRecognitionHandle.cpp
@@ -28,7 +28,7 @@
#include "modules/speech/SpeechRecognition.h"
-using namespace WebCore;
+using namespace blink;
namespace blink {
@@ -52,12 +52,12 @@ bool WebSpeechRecognitionHandle::lessThan(const WebSpeechRecognitionHandle& othe
return m_private.get() < other.m_private.get();
}
-WebSpeechRecognitionHandle::WebSpeechRecognitionHandle(WebCore::SpeechRecognition* speechRecognition)
+WebSpeechRecognitionHandle::WebSpeechRecognitionHandle(blink::SpeechRecognition* speechRecognition)
: m_private(speechRecognition)
{
}
-WebSpeechRecognitionHandle& WebSpeechRecognitionHandle::operator=(WebCore::SpeechRecognition* speechRecognition)
+WebSpeechRecognitionHandle& WebSpeechRecognitionHandle::operator=(blink::SpeechRecognition* speechRecognition)
{
m_private = speechRecognition;
return *this;
« no previous file with comments | « Source/web/WebSpeechGrammar.cpp ('k') | Source/web/WebSpeechRecognitionResult.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698