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

Unified Diff: Source/web/WebSpeechRecognitionHandle.cpp

Issue 471503002: Cleanup namespace usage in Source/web/Web[I-Z]*.cpp (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
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/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 2f4c85388865765690e9e467e2709c63479887ba..543e522fe40b2c5321b970d0cd324f144cac802e 100644
--- a/Source/web/WebSpeechRecognitionHandle.cpp
+++ b/Source/web/WebSpeechRecognitionHandle.cpp
@@ -28,8 +28,6 @@
#include "modules/speech/SpeechRecognition.h"
-using namespace blink;
-
namespace blink {
void WebSpeechRecognitionHandle::reset()
@@ -52,12 +50,12 @@ bool WebSpeechRecognitionHandle::lessThan(const WebSpeechRecognitionHandle& othe
return m_private.get() < other.m_private.get();
}
-WebSpeechRecognitionHandle::WebSpeechRecognitionHandle(blink::SpeechRecognition* speechRecognition)
+WebSpeechRecognitionHandle::WebSpeechRecognitionHandle(SpeechRecognition* speechRecognition)
: m_private(speechRecognition)
{
}
-WebSpeechRecognitionHandle& WebSpeechRecognitionHandle::operator=(blink::SpeechRecognition* speechRecognition)
+WebSpeechRecognitionHandle& WebSpeechRecognitionHandle::operator=(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