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

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

Issue 1627713002: Add more missing closing namespace comments. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebase, address comment (also filed llvm.org/PR26290) Created 4 years, 10 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 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
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
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698