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

Unified Diff: Source/core/html/track/vtt/VTTParser.h

Issue 134453006: Remove "using namespace" statements from headers (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Rebase Created 6 years, 11 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/core/html/track/LoadableTextTrack.cpp ('k') | Source/core/html/track/vtt/VTTParser.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/html/track/vtt/VTTParser.h
diff --git a/Source/core/html/track/vtt/VTTParser.h b/Source/core/html/track/vtt/VTTParser.h
index ed74fefaf7c1b72f60d70c185103e24f40b85d9b..9ab6330b2e7f9358e41eec74e7de64738aa2f940 100644
--- a/Source/core/html/track/vtt/VTTParser.h
+++ b/Source/core/html/track/vtt/VTTParser.h
@@ -44,8 +44,6 @@
namespace WebCore {
-using namespace HTMLNames;
-
class Document;
class VTTScanner;
@@ -76,11 +74,11 @@ public:
static inline bool isRecognizedTag(const AtomicString& tagName)
{
- return tagName == iTag
- || tagName == bTag
- || tagName == uTag
- || tagName == rubyTag
- || tagName == rtTag;
+ return tagName == HTMLNames::iTag
+ || tagName == HTMLNames::bTag
+ || tagName == HTMLNames::uTag
+ || tagName == HTMLNames::rubyTag
+ || tagName == HTMLNames::rtTag;
}
static inline bool isASpace(UChar c)
{
« no previous file with comments | « Source/core/html/track/LoadableTextTrack.cpp ('k') | Source/core/html/track/vtt/VTTParser.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698