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

Side by Side Diff: include/libplatform/v8-tracing.h

Issue 2378773004: [tracing] Simplify include statement. (Closed)
Patch Set: Created 4 years, 2 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
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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_
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698