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

Unified Diff: content/browser/devtools/protocol/worker_handler.cc

Issue 979793002: DevTools: prepare to migrate worker ids from ints to strings. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 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
« no previous file with comments | « content/browser/devtools/protocol/worker_handler.h ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/browser/devtools/protocol/worker_handler.cc
diff --git a/content/browser/devtools/protocol/worker_handler.cc b/content/browser/devtools/protocol/worker_handler.cc
index 9baee177fec1142bb8773a4ded58ac9c327be41e..8eee22dc2a8fd46d2b3d6dc632a1aef96839292b 100644
--- a/content/browser/devtools/protocol/worker_handler.cc
+++ b/content/browser/devtools/protocol/worker_handler.cc
@@ -24,6 +24,10 @@ Response WorkerHandler::DisconnectFromWorker(int worker_id) {
return Response::FallThrough();
}
+Response WorkerHandler::DisconnectFromWorker(const std::string& worker_id) {
+ return Response::FallThrough();
+}
+
} // namespace worker
} // namespace devtools
} // namespace content
« no previous file with comments | « content/browser/devtools/protocol/worker_handler.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698