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

Unified Diff: third_party/WebKit/public/web/WebSharedWorker.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/WebSharedWorker.h
diff --git a/third_party/WebKit/public/web/WebSharedWorker.h b/third_party/WebKit/public/web/WebSharedWorker.h
index 407d3d1d2222485b90ae1cbcf22a25b49a954714..8143de2abf6c60eb3928e16514f22ee0ddc30450 100644
--- a/third_party/WebKit/public/web/WebSharedWorker.h
+++ b/third_party/WebKit/public/web/WebSharedWorker.h
@@ -62,10 +62,10 @@ public:
virtual void terminateWorkerContext() = 0;
virtual void pauseWorkerContextOnStart() = 0;
- 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/WebEmbeddedWorker.h ('k') | third_party/WebKit/public/web/WebSharedWorkerClient.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698