Index: Source/core/inspector/InspectorProfilerAgent.cpp |
diff --git a/Source/core/inspector/InspectorProfilerAgent.cpp b/Source/core/inspector/InspectorProfilerAgent.cpp |
index 81f04c92bd6a0fc1b8e1df45f21caccec3c4f27a..d0375e75011b6963b2161649fc22b2283a0cae4a 100644 |
--- a/Source/core/inspector/InspectorProfilerAgent.cpp |
+++ b/Source/core/inspector/InspectorProfilerAgent.cpp |
@@ -139,7 +139,7 @@ String InspectorProfilerAgent::getCurrentUserInitiatedProfileName(bool increment |
if (incrementProfileNumber) |
m_currentUserInitiatedProfileNumber = m_nextUserInitiatedProfileNumber++; |
- return String(ASCIILiteral(userInitiatedProfileName)) + "." + String::number(m_currentUserInitiatedProfileNumber); |
+ return String(userInitiatedProfileName) + "." + String::number(m_currentUserInitiatedProfileNumber); |
} |
void InspectorProfilerAgent::getProfileHeaders(ErrorString*, RefPtr<TypeBuilder::Array<TypeBuilder::Profiler::ProfileHeader> >& headers) |