| Index: third_party/WebKit/Source/platform/graphics/GraphicsLayer.cpp
|
| diff --git a/third_party/WebKit/Source/platform/graphics/GraphicsLayer.cpp b/third_party/WebKit/Source/platform/graphics/GraphicsLayer.cpp
|
| index 75065b1289c37f5b2f14604b5fdef02fb34bae06..a574ad15ff685c353a6ad55ab60d45381eede8d0 100644
|
| --- a/third_party/WebKit/Source/platform/graphics/GraphicsLayer.cpp
|
| +++ b/third_party/WebKit/Source/platform/graphics/GraphicsLayer.cpp
|
| @@ -1237,11 +1237,11 @@ void GraphicsLayer::didScroll()
|
| }
|
| }
|
|
|
| -scoped_refptr<base::trace_event::ConvertableToTraceFormat> GraphicsLayer::TakeDebugInfo(cc::Layer* layer)
|
| +scoped_ptr<base::trace_event::ConvertableToTraceFormat> GraphicsLayer::TakeDebugInfo(cc::Layer* layer)
|
| {
|
| - scoped_refptr<base::trace_event::TracedValue> tracedValue = m_debugInfo.asTracedValue();
|
| + scoped_ptr<base::trace_event::TracedValue> tracedValue(m_debugInfo.asTracedValue());
|
| tracedValue->SetString("layer_name", WTF::StringUTF8Adaptor(debugName(layer)).asStringPiece());
|
| - return tracedValue;
|
| + return std::move(tracedValue);
|
| }
|
|
|
| PaintController& GraphicsLayer::paintController()
|
|
|