| Index: third_party/WebKit/Source/platform/graphics/GraphicsLayerDebugInfo.cpp
|
| diff --git a/third_party/WebKit/Source/platform/graphics/GraphicsLayerDebugInfo.cpp b/third_party/WebKit/Source/platform/graphics/GraphicsLayerDebugInfo.cpp
|
| index b46bcad0239da2581e4db6080d33d121b2d435d8..12f68b8514ba928cf213f1a94a5a4a0ed2fe82dd 100644
|
| --- a/third_party/WebKit/Source/platform/graphics/GraphicsLayerDebugInfo.cpp
|
| +++ b/third_party/WebKit/Source/platform/graphics/GraphicsLayerDebugInfo.cpp
|
| @@ -32,9 +32,10 @@ GraphicsLayerDebugInfo::GraphicsLayerDebugInfo()
|
|
|
| GraphicsLayerDebugInfo::~GraphicsLayerDebugInfo() { }
|
|
|
| -scoped_refptr<base::trace_event::TracedValue> GraphicsLayerDebugInfo::asTracedValue() const
|
| +scoped_ptr<base::trace_event::TracedValue> GraphicsLayerDebugInfo::asTracedValue() const
|
| {
|
| - scoped_refptr<base::trace_event::TracedValue> tracedValue = new base::trace_event::TracedValue;
|
| + scoped_ptr<base::trace_event::TracedValue> tracedValue(
|
| + new base::trace_event::TracedValue());
|
| appendAnnotatedInvalidateRects(tracedValue.get());
|
| appendCompositingReasons(tracedValue.get());
|
| appendSquashingDisallowedReasons(tracedValue.get());
|
|
|