Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1264)

Unified Diff: third_party/WebKit/Source/platform/inspector_protocol/FrontendChannel.h

Issue 1738073002: DevTools: introduce protocol::Value, baseline for hierarchical data in remote debugging protocol. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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;
};

Powered by Google App Engine
This is Rietveld 408576698