| OLD | NEW |
| 1 // | 1 // |
| 2 // Copyright 2014 The Chromium Authors. All rights reserved. | 2 // Copyright 2014 The Chromium Authors. All rights reserved. |
| 3 // Use of this source code is governed by a BSD-style license that can be | 3 // Use of this source code is governed by a BSD-style license that can be |
| 4 // found in the LICENSE file. | 4 // found in the LICENSE file. |
| 5 // | 5 // |
| 6 | 6 |
| 7 #include "core/inspector/InspectorTracingAgent.h" | 7 #include "core/inspector/InspectorTracingAgent.h" |
| 8 | 8 |
| 9 #include "core/frame/LocalFrame.h" | 9 #include "core/frame/LocalFrame.h" |
| 10 #include "core/inspector/IdentifiersFactory.h" | 10 #include "core/inspector/IdentifiersFactory.h" |
| (...skipping 73 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 84 { | 84 { |
| 85 resetSessionId(); | 85 resetSessionId(); |
| 86 } | 86 } |
| 87 | 87 |
| 88 void InspectorTracingAgent::resetSessionId() | 88 void InspectorTracingAgent::resetSessionId() |
| 89 { | 89 { |
| 90 m_state->remove(TracingAgentState::sessionId); | 90 m_state->remove(TracingAgentState::sessionId); |
| 91 m_workerAgent->setTracingSessionId(sessionId()); | 91 m_workerAgent->setTracingSessionId(sessionId()); |
| 92 } | 92 } |
| 93 | 93 |
| 94 } | 94 } // namespace blink |
| OLD | NEW |