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

Unified Diff: Source/core/inspector/WorkerInspectorController.cpp

Issue 670433002: DevTools: Remove unused code after service/shared worker inspection migration to main thread. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 6 years, 2 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 | « no previous file | Source/core/workers/WorkerObjectProxy.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/inspector/WorkerInspectorController.cpp
diff --git a/Source/core/inspector/WorkerInspectorController.cpp b/Source/core/inspector/WorkerInspectorController.cpp
index 4f97ac25d809001be23a474dc6463d96f97e582c..067c62c8958a9604a1b866395da79207384f0520 100644
--- a/Source/core/inspector/WorkerInspectorController.cpp
+++ b/Source/core/inspector/WorkerInspectorController.cpp
@@ -74,16 +74,11 @@ private:
class WorkerStateClient final : public InspectorStateClient {
WTF_MAKE_FAST_ALLOCATED;
public:
- WorkerStateClient(WorkerGlobalScope* context) : m_workerGlobalScope(context) { }
+ WorkerStateClient(WorkerGlobalScope* context) { }
virtual ~WorkerStateClient() { }
private:
- virtual void updateInspectorStateCookie(const String& cookie) override
- {
- m_workerGlobalScope->thread()->workerReportingProxy().updateInspectorStateCookie(cookie);
- }
-
- WorkerGlobalScope* m_workerGlobalScope;
+ virtual void updateInspectorStateCookie(const String& cookie) override { }
};
}
« no previous file with comments | « no previous file | Source/core/workers/WorkerObjectProxy.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698