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

Unified Diff: public/web/WebSpeechRecognitionHandle.h

Issue 454103003: Cleanup namespace usage in public/web/Web[N-Z]*.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 | « public/web/WebSpeechGrammar.h ('k') | public/web/WebSpeechRecognitionResult.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: public/web/WebSpeechRecognitionHandle.h
diff --git a/public/web/WebSpeechRecognitionHandle.h b/public/web/WebSpeechRecognitionHandle.h
index 40503c00a59b18e4da791c80aacffb8f74aba8b7..aaf284f5fea111d390590728b739d8cae595443f 100644
--- a/public/web/WebSpeechRecognitionHandle.h
+++ b/public/web/WebSpeechRecognitionHandle.h
@@ -30,11 +30,8 @@
#include "../platform/WebPrivatePtr.h"
namespace blink {
-class SpeechRecognition;
-}
-
-namespace blink {
+class SpeechRecognition;
class WebSpeechRecognitionResult;
class WebString;
@@ -62,13 +59,13 @@ public:
BLINK_EXPORT bool lessThan(const WebSpeechRecognitionHandle&) const;
#if BLINK_IMPLEMENTATION
- explicit WebSpeechRecognitionHandle(blink::SpeechRecognition*);
- WebSpeechRecognitionHandle& operator=(blink::SpeechRecognition*);
- operator blink::SpeechRecognition*() const;
+ explicit WebSpeechRecognitionHandle(SpeechRecognition*);
+ WebSpeechRecognitionHandle& operator=(SpeechRecognition*);
+ operator SpeechRecognition*() const;
#endif
private:
- WebPrivatePtr<blink::SpeechRecognition> m_private;
+ WebPrivatePtr<SpeechRecognition> m_private;
};
inline bool operator==(const WebSpeechRecognitionHandle& a, const WebSpeechRecognitionHandle& b)
« no previous file with comments | « public/web/WebSpeechGrammar.h ('k') | public/web/WebSpeechRecognitionResult.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698