Index: third_party/WebKit/Source/platform/graphics/GraphicsLayerDebugInfo.h |
diff --git a/third_party/WebKit/Source/platform/graphics/GraphicsLayerDebugInfo.h b/third_party/WebKit/Source/platform/graphics/GraphicsLayerDebugInfo.h |
index ccc64fadde376e15ef523b2cf79c2877979d4833..3fd5e8ce717e80fca9291be9e48db338d14f44bf 100644 |
--- a/third_party/WebKit/Source/platform/graphics/GraphicsLayerDebugInfo.h |
+++ b/third_party/WebKit/Source/platform/graphics/GraphicsLayerDebugInfo.h |
@@ -58,7 +58,6 @@ public: |
CompositingReasons compositingReasons() const { return m_compositingReasons; } |
void setCompositingReasons(CompositingReasons reasons) { m_compositingReasons = reasons; } |
- void setOwnerNodeId(int id) { m_ownerNodeId = id; } |
void appendAnnotatedInvalidateRect(const FloatRect&, PaintInvalidationReason); |
void clearAnnotatedInvalidateRects(); |
@@ -66,7 +65,6 @@ public: |
private: |
void appendAnnotatedInvalidateRects(base::trace_event::TracedValue*) const; |
void appendCompositingReasons(base::trace_event::TracedValue*) const; |
- void appendOwnerNodeId(base::trace_event::TracedValue*) const; |
struct AnnotatedInvalidationRect { |
DISALLOW_NEW_EXCEPT_PLACEMENT_NEW(); |
@@ -75,7 +73,6 @@ private: |
}; |
CompositingReasons m_compositingReasons; |
- int m_ownerNodeId; |
Vector<AnnotatedInvalidationRect> m_invalidations; |
Vector<AnnotatedInvalidationRect> m_previousInvalidations; |
}; |