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

Unified Diff: third_party/WebKit/public/web/WebEmbeddedWorker.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/public/web/WebEmbeddedWorker.h
diff --git a/third_party/WebKit/public/web/WebEmbeddedWorker.h b/third_party/WebKit/public/web/WebEmbeddedWorker.h
index 0731215d6e6fa6cfcf8a2943a85571a7e4e07eca..027e030dd9e7fd96c347688cd275413048c91eca 100644
--- a/third_party/WebKit/public/web/WebEmbeddedWorker.h
+++ b/third_party/WebKit/public/web/WebEmbeddedWorker.h
@@ -59,10 +59,10 @@ public:
virtual void terminateWorkerContext() = 0;
// Inspector related methods.
- virtual void attachDevTools(const WebString& hostId) = 0;
- virtual void reattachDevTools(const WebString& hostId, const WebString& savedState) = 0;
+ virtual void attachDevTools(const WebString& hostId, int sessionId) = 0;
+ virtual void reattachDevTools(const WebString& hostId, int sessionId, const WebString& savedState) = 0;
virtual void detachDevTools() = 0;
- virtual void dispatchDevToolsMessage(const WebString&) = 0;
+ virtual void dispatchDevToolsMessage(int sessionId, const WebString&) = 0;
};
} // namespace blink
« no previous file with comments | « third_party/WebKit/public/web/WebDevToolsAgentClient.h ('k') | third_party/WebKit/public/web/WebSharedWorker.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698