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

Side by Side Diff: third_party/WebKit/Source/core/inspector/InspectorSession.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 // Copyright 2016 The Chromium Authors. All rights reserved. 1 // Copyright 2016 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #include "core/inspector/InspectorSession.h" 5 #include "core/inspector/InspectorSession.h"
6 6
7 #include "bindings/core/v8/ScriptController.h" 7 #include "bindings/core/v8/ScriptController.h"
8 #include "core/frame/LocalFrame.h" 8 #include "core/frame/LocalFrame.h"
9 #include "core/frame/Settings.h" 9 #include "core/frame/Settings.h"
10 #include "core/frame/UseCounter.h" 10 #include "core/frame/UseCounter.h"
(...skipping 145 matching lines...) Expand 10 before | Expand all | Expand 10 after
156 void InspectorSession::profilingStarted() 156 void InspectorSession::profilingStarted()
157 { 157 {
158 m_client->profilingStarted(); 158 m_client->profilingStarted();
159 } 159 }
160 160
161 void InspectorSession::profilingStopped() 161 void InspectorSession::profilingStopped()
162 { 162 {
163 m_client->profilingStopped(); 163 m_client->profilingStopped();
164 } 164 }
165 165
166 void InspectorSession::consoleEnabled()
167 {
168 m_client->consoleEnabled();
169 }
170
171 void InspectorSession::consoleCleared() 166 void InspectorSession::consoleCleared()
172 { 167 {
173 m_client->consoleCleared(); 168 m_client->consoleCleared();
174 } 169 }
175 170
176 DEFINE_TRACE(InspectorSession) 171 DEFINE_TRACE(InspectorSession)
177 { 172 {
178 visitor->trace(m_instrumentingAgents); 173 visitor->trace(m_instrumentingAgents);
179 visitor->trace(m_inspectedFrames); 174 visitor->trace(m_inspectedFrames);
180 visitor->trace(m_agents); 175 visitor->trace(m_agents);
181 } 176 }
182 177
183 } // namespace blink 178 } // namespace blink
184 179
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698