| Index: third_party/WebKit/Source/web/WebDevToolsAgentImpl.h
|
| diff --git a/third_party/WebKit/Source/web/WebDevToolsAgentImpl.h b/third_party/WebKit/Source/web/WebDevToolsAgentImpl.h
|
| index efbab9b4805dbe7b4ccadae3a62e11b9659af8d7..9e34e152b1cce619699d2b8aab29d53f3c523f52 100644
|
| --- a/third_party/WebKit/Source/web/WebDevToolsAgentImpl.h
|
| +++ b/third_party/WebKit/Source/web/WebDevToolsAgentImpl.h
|
| @@ -133,8 +133,8 @@ private:
|
| void waitForCreateWindow(LocalFrame*) override;
|
|
|
| // protocol::FrontendChannel implementation.
|
| - void sendProtocolResponse(int sessionId, int callId, PassRefPtr<protocol::DictionaryValue> message) override;
|
| - void sendProtocolNotification(PassRefPtr<protocol::DictionaryValue> message) override;
|
| + void sendProtocolResponse(int sessionId, int callId, PassOwnPtr<protocol::DictionaryValue> message) override;
|
| + void sendProtocolNotification(PassOwnPtr<protocol::DictionaryValue> message) override;
|
| void flush() override;
|
|
|
| // WebThread::TaskObserver implementation.
|
| @@ -173,7 +173,7 @@ private:
|
| InspectorAgentRegistry m_agents;
|
| bool m_deferredAgentsInitialized;
|
|
|
| - typedef Vector<std::pair<int, RefPtr<protocol::Value>>> NotificationQueue;
|
| + typedef Vector<std::pair<int, OwnPtr<protocol::Value>>> NotificationQueue;
|
| NotificationQueue m_notificationQueue;
|
| int m_sessionId;
|
| String m_stateCookie;
|
|
|