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

Unified Diff: third_party/WebKit/Source/core/inspector/InspectorFrontendChannel.h

Issue 1437283003: [DevTools] filter any messages from previous session in DevToolsAgentHostImpl (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 1 month 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/core/inspector/InspectorFrontendChannel.h
diff --git a/third_party/WebKit/Source/core/inspector/InspectorFrontendChannel.h b/third_party/WebKit/Source/core/inspector/InspectorFrontendChannel.h
index 8b687d1405a720dde55351c8d9b72200df82c71b..580a12d3e18aa84dbdb4cebae4b7ba239f6d67e8 100644
--- a/third_party/WebKit/Source/core/inspector/InspectorFrontendChannel.h
+++ b/third_party/WebKit/Source/core/inspector/InspectorFrontendChannel.h
@@ -34,7 +34,7 @@ namespace blink {
class InspectorFrontendChannel {
public:
virtual ~InspectorFrontendChannel() { }
- virtual void sendProtocolResponse(int callId, PassRefPtr<JSONObject> message) = 0;
+ virtual void sendProtocolResponse(int sessionId, int callId, PassRefPtr<JSONObject> message) = 0;
virtual void sendProtocolNotification(PassRefPtr<JSONObject> message) = 0;
virtual void flush() = 0;
};

Powered by Google App Engine
This is Rietveld 408576698