| OLD | NEW | 
|---|
| 1 // Copyright 2016 the V8 project authors. All rights reserved. | 1 // Copyright 2016 the V8 project 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 #ifndef V8_LIBPLATFORM_V8_TRACING_H_ | 5 #ifndef V8_LIBPLATFORM_V8_TRACING_H_ | 
| 6 #define V8_LIBPLATFORM_V8_TRACING_H_ | 6 #define V8_LIBPLATFORM_V8_TRACING_H_ | 
| 7 | 7 | 
| 8 #include <fstream> | 8 #include <fstream> | 
| 9 #include <memory> | 9 #include <memory> | 
| 10 #include <unordered_set> | 10 #include <unordered_set> | 
| 11 #include <vector> | 11 #include <vector> | 
| 12 | 12 | 
| 13 #include "include/v8-platform.h" | 13 #include "v8-platform.h"  // NOLINT(build/include) | 
| 14 | 14 | 
| 15 namespace v8 { | 15 namespace v8 { | 
| 16 | 16 | 
| 17 namespace base { | 17 namespace base { | 
| 18 class Mutex; | 18 class Mutex; | 
| 19 }  // namespace base | 19 }  // namespace base | 
| 20 | 20 | 
| 21 namespace platform { | 21 namespace platform { | 
| 22 namespace tracing { | 22 namespace tracing { | 
| 23 | 23 | 
| (...skipping 244 matching lines...) Expand 10 before | Expand all | Expand 10 after  Loading... | 
| 268   // Disallow copy and assign | 268   // Disallow copy and assign | 
| 269   TracingController(const TracingController&) = delete; | 269   TracingController(const TracingController&) = delete; | 
| 270   void operator=(const TracingController&) = delete; | 270   void operator=(const TracingController&) = delete; | 
| 271 }; | 271 }; | 
| 272 | 272 | 
| 273 }  // namespace tracing | 273 }  // namespace tracing | 
| 274 }  // namespace platform | 274 }  // namespace platform | 
| 275 }  // namespace v8 | 275 }  // namespace v8 | 
| 276 | 276 | 
| 277 #endif  // V8_LIBPLATFORM_V8_TRACING_H_ | 277 #endif  // V8_LIBPLATFORM_V8_TRACING_H_ | 
| OLD | NEW | 
|---|