| Index: third_party/WebKit/Source/core/inspector/InspectorBaseAgent.h
|
| diff --git a/third_party/WebKit/Source/core/inspector/InspectorBaseAgent.h b/third_party/WebKit/Source/core/inspector/InspectorBaseAgent.h
|
| index bad291f169f495d2eac2b5f9d472f66905ad495a..73ab0f804af4db643c1ddf7e22f4fe6a24023bee 100644
|
| --- a/third_party/WebKit/Source/core/inspector/InspectorBaseAgent.h
|
| +++ b/third_party/WebKit/Source/core/inspector/InspectorBaseAgent.h
|
| @@ -78,7 +78,7 @@ public:
|
| if (!m_state) {
|
| OwnPtr<protocol::DictionaryValue> newState = protocol::DictionaryValue::create();
|
| m_state = newState.get();
|
| - state->setObject(m_name, newState.release());
|
| + state->setObject(m_name, std::move(newState));
|
| }
|
| }
|
|
|
|
|