| 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 73ab0f804af4db643c1ddf7e22f4fe6a24023bee..84ca702bc242185ac35b91b7c937eb17c3de68b1 100644
|
| --- a/third_party/WebKit/Source/core/inspector/InspectorBaseAgent.h
|
| +++ b/third_party/WebKit/Source/core/inspector/InspectorBaseAgent.h
|
| @@ -76,7 +76,7 @@ public:
|
|
|
| m_state = state->getObject(m_name);
|
| if (!m_state) {
|
| - OwnPtr<protocol::DictionaryValue> newState = protocol::DictionaryValue::create();
|
| + std::unique_ptr<protocol::DictionaryValue> newState = protocol::DictionaryValue::create();
|
| m_state = newState.get();
|
| state->setObject(m_name, std::move(newState));
|
| }
|
|
|