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

Unified Diff: Source/core/platform/graphics/GraphicsContextAnnotation.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
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));

Powered by Google App Engine
This is Rietveld 408576698