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

Side by Side Diff: third_party/WebKit/Source/core/inspector/WorkerInspectorController.cpp

Issue 2141673002: [DevTools] Always send a copy of worker message through the page. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: nit Created 4 years, 5 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 unified diff | Download patch
OLDNEW
1 /* 1 /*
2 * Copyright (C) 2011 Google Inc. All rights reserved. 2 * Copyright (C) 2011 Google Inc. All rights reserved.
3 * 3 *
4 * Redistribution and use in source and binary forms, with or without 4 * Redistribution and use in source and binary forms, with or without
5 * modification, are permitted provided that the following conditions are 5 * modification, are permitted provided that the following conditions are
6 * met: 6 * met:
7 * 7 *
8 * * Redistributions of source code must retain the above copyright 8 * * Redistributions of source code must retain the above copyright
9 * notice, this list of conditions and the following disclaimer. 9 * notice, this list of conditions and the following disclaimer.
10 * * Redistributions in binary form must reproduce the above 10 * * Redistributions in binary form must reproduce the above
(...skipping 78 matching lines...) Expand 10 before | Expand all | Expand 10 after
89 void WorkerInspectorController::dispose() 89 void WorkerInspectorController::dispose()
90 { 90 {
91 disconnectFrontend(); 91 disconnectFrontend();
92 } 92 }
93 93
94 void WorkerInspectorController::resumeStartup() 94 void WorkerInspectorController::resumeStartup()
95 { 95 {
96 m_workerGlobalScope->thread()->stopRunningDebuggerTasksOnPauseOnWorkerThread (); 96 m_workerGlobalScope->thread()->stopRunningDebuggerTasksOnPauseOnWorkerThread ();
97 } 97 }
98 98
99 void WorkerInspectorController::consoleEnabled()
100 {
101 m_workerGlobalScope->thread()->workerReportingProxy().postWorkerConsoleAgent Enabled();
102 }
103
104 void WorkerInspectorController::sendProtocolMessage(int sessionId, int callId, c onst String& response, const String& state) 99 void WorkerInspectorController::sendProtocolMessage(int sessionId, int callId, c onst String& response, const String& state)
105 { 100 {
106 // Worker messages are wrapped, no need to handle callId or state. 101 // Worker messages are wrapped, no need to handle callId or state.
107 m_workerGlobalScope->thread()->workerReportingProxy().postMessageToPageInspe ctor(response); 102 m_workerGlobalScope->thread()->workerReportingProxy().postMessageToPageInspe ctor(response);
108 } 103 }
109 104
110 DEFINE_TRACE(WorkerInspectorController) 105 DEFINE_TRACE(WorkerInspectorController)
111 { 106 {
112 visitor->trace(m_workerGlobalScope); 107 visitor->trace(m_workerGlobalScope);
113 visitor->trace(m_instrumentingAgents); 108 visitor->trace(m_instrumentingAgents);
114 visitor->trace(m_session); 109 visitor->trace(m_session);
115 } 110 }
116 111
117 } // namespace blink 112 } // namespace blink
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698