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

Unified Diff: Source/core/dom/PseudoElement.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
« no previous file with comments | « Source/core/dom/Document.cpp ('k') | Source/core/editing/EditorCommand.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/dom/PseudoElement.cpp
diff --git a/Source/core/dom/PseudoElement.cpp b/Source/core/dom/PseudoElement.cpp
index 99824e593760ac969e6eaaca7561c3bfb310b2bd..105ac7e72bf07b01fe523e14f34cf1a4415a61ee 100644
--- a/Source/core/dom/PseudoElement.cpp
+++ b/Source/core/dom/PseudoElement.cpp
@@ -42,8 +42,8 @@ const QualifiedName& pseudoElementTagName()
String PseudoElement::pseudoElementNameForEvents(PseudoId pseudoId)
{
- DEFINE_STATIC_LOCAL(const String, after, (ASCIILiteral("::after")));
- DEFINE_STATIC_LOCAL(const String, before, (ASCIILiteral("::before")));
+ DEFINE_STATIC_LOCAL(const String, after, ("::after"));
+ DEFINE_STATIC_LOCAL(const String, before, ("::before"));
switch (pseudoId) {
case AFTER:
return after;
« no previous file with comments | « Source/core/dom/Document.cpp ('k') | Source/core/editing/EditorCommand.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698