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

Unified Diff: Source/core/inspector/InspectorCSSAgent.cpp

Issue 22572005: Remove all uses of the ASCIILiteral class. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: rm it from wtf Created 7 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/core/inspector/InspectorCSSAgent.cpp
diff --git a/Source/core/inspector/InspectorCSSAgent.cpp b/Source/core/inspector/InspectorCSSAgent.cpp
index 99a5fac902cbabec04abcdc81294aa8b53f32531..45205fe957eb60e2bb5d5479d5a42d635521d48f 100644
--- a/Source/core/inspector/InspectorCSSAgent.cpp
+++ b/Source/core/inspector/InspectorCSSAgent.cpp
@@ -111,10 +111,10 @@ private:
static unsigned computePseudoClassMask(JSONArray* pseudoClassArray)
{
- DEFINE_STATIC_LOCAL(String, active, (ASCIILiteral("active")));
- DEFINE_STATIC_LOCAL(String, hover, (ASCIILiteral("hover")));
- DEFINE_STATIC_LOCAL(String, focus, (ASCIILiteral("focus")));
- DEFINE_STATIC_LOCAL(String, visited, (ASCIILiteral("visited")));
+ DEFINE_STATIC_LOCAL(String, active, ("active"));
+ DEFINE_STATIC_LOCAL(String, hover, ("hover"));
+ DEFINE_STATIC_LOCAL(String, focus, ("focus"));
+ DEFINE_STATIC_LOCAL(String, visited, ("visited"));
if (!pseudoClassArray || !pseudoClassArray->length())
return PseudoNone;
« no previous file with comments | « Source/core/inspector/InspectorApplicationCacheAgent.cpp ('k') | Source/core/inspector/InspectorIndexedDBAgent.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698