| Index: Source/platform/graphics/GraphicsLayerDebugInfo.h
|
| diff --git a/Source/platform/graphics/GraphicsLayerDebugInfo.h b/Source/platform/graphics/GraphicsLayerDebugInfo.h
|
| index 30f5a2f8a4f7d1d63402839febb65a266ce9b56a..8ef0716d66b786edb67ef8aa7c7f53779b9996dc 100644
|
| --- a/Source/platform/graphics/GraphicsLayerDebugInfo.h
|
| +++ b/Source/platform/graphics/GraphicsLayerDebugInfo.h
|
| @@ -49,14 +49,17 @@ public:
|
|
|
| GraphicsLayerDebugInfo* clone() const;
|
|
|
| - Vector<LayoutRect>& currentLayoutRects() { return m_currentLayoutRects; }
|
| + void setDebugName(const String& name) { m_debugName = name; }
|
| CompositingReasons compositingReasons() const { return m_compositingReasons; }
|
| void setCompositingReasons(CompositingReasons reasons) { m_compositingReasons = reasons; }
|
| + Vector<LayoutRect>& currentLayoutRects() { return m_currentLayoutRects; }
|
|
|
| private:
|
| void appendLayoutRects(JSONObject*) const;
|
| void appendCompositingReasons(JSONObject*) const;
|
| + void appendDebugName(JSONObject*) const;
|
|
|
| + String m_debugName;
|
| CompositingReasons m_compositingReasons;
|
| Vector<LayoutRect> m_currentLayoutRects;
|
| };
|
|
|