| Index: Source/core/platform/graphics/GraphicsContextAnnotation.cpp
|
| diff --git a/Source/core/platform/graphics/GraphicsContextAnnotation.cpp b/Source/core/platform/graphics/GraphicsContextAnnotation.cpp
|
| index 0a8c387cbdf81b4a74e5f70784fb44bc192254cb..1ca9824a11dfa5073d95e410192b31f391ae41c9 100644
|
| --- a/Source/core/platform/graphics/GraphicsContextAnnotation.cpp
|
| +++ b/Source/core/platform/graphics/GraphicsContextAnnotation.cpp
|
| @@ -127,10 +127,10 @@ void GraphicsContextAnnotation::asAnnotationList(AnnotationList &list) const
|
| list.clear();
|
|
|
| if (m_rendererName)
|
| - list.append(std::make_pair(AnnotationKeyRendererName, ASCIILiteral(m_rendererName)));
|
| + list.append(std::make_pair(AnnotationKeyRendererName, m_rendererName));
|
|
|
| if (m_paintPhase)
|
| - list.append(std::make_pair(AnnotationKeyPaintPhase, ASCIILiteral(m_paintPhase)));
|
| + list.append(std::make_pair(AnnotationKeyPaintPhase, m_paintPhase));
|
|
|
| if (!m_elementId.isEmpty())
|
| list.append(std::make_pair(AnnotationKeyElementId, m_elementId));
|
|
|