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

Unified Diff: Source/core/page/PageVisibilityState.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/page/EventHandler.cpp ('k') | Source/core/page/UserContentURLPattern.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/page/PageVisibilityState.cpp
diff --git a/Source/core/page/PageVisibilityState.cpp b/Source/core/page/PageVisibilityState.cpp
index 78d4c2c6efd310215e050c343f46696166f84c6c..630b0dbe05d6744df784a5eedb408301abfbbca6 100644
--- a/Source/core/page/PageVisibilityState.cpp
+++ b/Source/core/page/PageVisibilityState.cpp
@@ -35,10 +35,10 @@ namespace WebCore {
String pageVisibilityStateString(PageVisibilityState state)
{
- DEFINE_STATIC_LOCAL(const String, visible, (ASCIILiteral("visible")));
- DEFINE_STATIC_LOCAL(const String, hidden, (ASCIILiteral("hidden")));
- DEFINE_STATIC_LOCAL(const String, prerender, (ASCIILiteral("prerender")));
- DEFINE_STATIC_LOCAL(const String, preview, (ASCIILiteral("preview")));
+ DEFINE_STATIC_LOCAL(const String, visible, ("visible"));
+ DEFINE_STATIC_LOCAL(const String, hidden, ("hidden"));
+ DEFINE_STATIC_LOCAL(const String, prerender, ("prerender"));
+ DEFINE_STATIC_LOCAL(const String, preview, ("preview"));
switch (state) {
case PageVisibilityStateVisible:
« no previous file with comments | « Source/core/page/EventHandler.cpp ('k') | Source/core/page/UserContentURLPattern.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698