| OLD | NEW |
| 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 Loading... |
| 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 |
| OLD | NEW |