| Index: third_party/WebKit/Source/platform/inspector_protocol/FrontendChannel.h
|
| diff --git a/third_party/WebKit/Source/platform/inspector_protocol/FrontendChannel.h b/third_party/WebKit/Source/platform/inspector_protocol/FrontendChannel.h
|
| index 530d50e006c465e3cd5f8f28b053489fd5e5cb12..dfb7fc35e6cc36ae3b64c5e4fc968a09058d2061 100644
|
| --- a/third_party/WebKit/Source/platform/inspector_protocol/FrontendChannel.h
|
| +++ b/third_party/WebKit/Source/platform/inspector_protocol/FrontendChannel.h
|
| @@ -26,7 +26,7 @@
|
| #ifndef FrontendChannel_h
|
| #define FrontendChannel_h
|
|
|
| -#include "platform/JSONValues.h"
|
| +#include "platform/inspector_protocol/Values.h"
|
| #include "wtf/Forward.h"
|
|
|
| namespace blink {
|
| @@ -35,8 +35,8 @@ namespace protocol {
|
| class FrontendChannel {
|
| public:
|
| virtual ~FrontendChannel() { }
|
| - virtual void sendProtocolResponse(int sessionId, int callId, PassRefPtr<JSONObject> message) = 0;
|
| - virtual void sendProtocolNotification(PassRefPtr<JSONObject> message) = 0;
|
| + virtual void sendProtocolResponse(int sessionId, int callId, PassRefPtr<protocol::DictionaryValue> message) = 0;
|
| + virtual void sendProtocolNotification(PassRefPtr<protocol::DictionaryValue> message) = 0;
|
| virtual void flush() = 0;
|
| };
|
|
|
|
|