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: |