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

Unified Diff: Source/platform/exported/WebSpeechSynthesisUtterance.cpp

Issue 458313005: Cleanup namespace usage from animation to exported in platform/ (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Cleanup namespace usage from animation to exported in platform/ 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
Index: Source/platform/exported/WebSpeechSynthesisUtterance.cpp
diff --git a/Source/platform/exported/WebSpeechSynthesisUtterance.cpp b/Source/platform/exported/WebSpeechSynthesisUtterance.cpp
index 56f26b7b563d9703e05330746227f402cbb67917..0d75dcb2883d87c10eaf75ae05908d320ba09e03 100644
--- a/Source/platform/exported/WebSpeechSynthesisUtterance.cpp
+++ b/Source/platform/exported/WebSpeechSynthesisUtterance.cpp
@@ -31,16 +31,14 @@
#include "wtf/PassRefPtr.h"
#include "wtf/RefPtr.h"
-using namespace blink;
-
namespace blink {
-WebSpeechSynthesisUtterance::WebSpeechSynthesisUtterance(blink::PlatformSpeechSynthesisUtterance* utterance)
+WebSpeechSynthesisUtterance::WebSpeechSynthesisUtterance(PlatformSpeechSynthesisUtterance* utterance)
: m_private(utterance)
{
}
-WebSpeechSynthesisUtterance& WebSpeechSynthesisUtterance::operator=(blink::PlatformSpeechSynthesisUtterance* utterance)
+WebSpeechSynthesisUtterance& WebSpeechSynthesisUtterance::operator=(PlatformSpeechSynthesisUtterance* utterance)
{
m_private = utterance;
return *this;
« no previous file with comments | « Source/platform/exported/WebSocketStreamError.cpp ('k') | Source/platform/exported/WebSpeechSynthesisVoice.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698