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

Unified Diff: Source/core/platform/graphics/GraphicsContextAnnotation.h

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.h
diff --git a/Source/core/platform/graphics/GraphicsContextAnnotation.h b/Source/core/platform/graphics/GraphicsContextAnnotation.h
index 22684b5a1adc41178891542b166f107dcc017e97..f30a38d87ca8146856f6344054c08f4c22aa9b04 100644
--- a/Source/core/platform/graphics/GraphicsContextAnnotation.h
+++ b/Source/core/platform/graphics/GraphicsContextAnnotation.h
@@ -62,8 +62,8 @@ class GraphicsContextAnnotation {
public:
GraphicsContextAnnotation(const PaintInfo&, const RenderObject*);
- String rendererName() const { return ASCIILiteral(m_rendererName); }
- String paintPhase() const { return ASCIILiteral(m_paintPhase); }
+ String rendererName() const { return m_rendererName; }
+ String paintPhase() const { return m_paintPhase; }
String elementId() const { return m_elementId; }
String elementClass() const { return m_elementClass; }
String elementTag() const { return m_elementTag; }

Powered by Google App Engine
This is Rietveld 408576698