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

Unified Diff: Source/core/page/DiagnosticLoggingKeys.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/ContentSecurityPolicy.cpp ('k') | Source/core/page/EventHandler.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/page/DiagnosticLoggingKeys.cpp
diff --git a/Source/core/page/DiagnosticLoggingKeys.cpp b/Source/core/page/DiagnosticLoggingKeys.cpp
index 6e6db7e6918a8f9f8e715441e99cb9d158837b2b..690ddc64597cadb2d7bca0a6d74f6d6c8aeaa9ba 100644
--- a/Source/core/page/DiagnosticLoggingKeys.cpp
+++ b/Source/core/page/DiagnosticLoggingKeys.cpp
@@ -30,67 +30,67 @@ namespace WebCore {
const String& DiagnosticLoggingKeys::mediaLoadedKey()
{
- DEFINE_STATIC_LOCAL(const String, key, (ASCIILiteral("mediaLoaded")));
+ DEFINE_STATIC_LOCAL(const String, key, ("mediaLoaded"));
return key;
}
const String& DiagnosticLoggingKeys::mediaLoadingFailedKey()
{
- DEFINE_STATIC_LOCAL(const String, key, (ASCIILiteral("mediaFailedLoading")));
+ DEFINE_STATIC_LOCAL(const String, key, ("mediaFailedLoading"));
return key;
}
const String& DiagnosticLoggingKeys::pluginLoadedKey()
{
- DEFINE_STATIC_LOCAL(const String, key, (ASCIILiteral("pluginLoaded")));
+ DEFINE_STATIC_LOCAL(const String, key, ("pluginLoaded"));
return key;
}
const String& DiagnosticLoggingKeys::pluginLoadingFailedKey()
{
- DEFINE_STATIC_LOCAL(const String, key, (ASCIILiteral("pluginFailedLoading")));
+ DEFINE_STATIC_LOCAL(const String, key, ("pluginFailedLoading"));
return key;
}
const String& DiagnosticLoggingKeys::pageContainsPluginKey()
{
- DEFINE_STATIC_LOCAL(const String, key, (ASCIILiteral("pageContainsPlugin")));
+ DEFINE_STATIC_LOCAL(const String, key, ("pageContainsPlugin"));
return key;
}
const String& DiagnosticLoggingKeys::pageContainsAtLeastOnePluginKey()
{
- DEFINE_STATIC_LOCAL(const String, key, (ASCIILiteral("pageContainsAtLeastOnePlugin")));
+ DEFINE_STATIC_LOCAL(const String, key, ("pageContainsAtLeastOnePlugin"));
return key;
}
const String& DiagnosticLoggingKeys::pageContainsMediaEngineKey()
{
- DEFINE_STATIC_LOCAL(const String, key, (ASCIILiteral("pageContainsMediaEngine")));
+ DEFINE_STATIC_LOCAL(const String, key, ("pageContainsMediaEngine"));
return key;
}
const String& DiagnosticLoggingKeys::pageContainsAtLeastOneMediaEngineKey()
{
- DEFINE_STATIC_LOCAL(const String, key, (ASCIILiteral("pageContainsAtLeastOneMediaEngine")));
+ DEFINE_STATIC_LOCAL(const String, key, ("pageContainsAtLeastOneMediaEngine"));
return key;
}
const String& DiagnosticLoggingKeys::passKey()
{
- DEFINE_STATIC_LOCAL(const String, key, (ASCIILiteral("pass")));
+ DEFINE_STATIC_LOCAL(const String, key, ("pass"));
return key;
}
const String& DiagnosticLoggingKeys::failKey()
{
- DEFINE_STATIC_LOCAL(const String, key, (ASCIILiteral("fail")));
+ DEFINE_STATIC_LOCAL(const String, key, ("fail"));
return key;
}
const String& DiagnosticLoggingKeys::noopKey()
{
- DEFINE_STATIC_LOCAL(const String, key, (ASCIILiteral("noop")));
+ DEFINE_STATIC_LOCAL(const String, key, ("noop"));
return key;
}
« no previous file with comments | « Source/core/page/ContentSecurityPolicy.cpp ('k') | Source/core/page/EventHandler.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698