• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 // Copyright 2015 the V8 project authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4 
5 #include "src/tracing/trace-event.h"
6 
7 #include "src/v8.h"
8 
9 namespace v8 {
10 namespace internal {
11 namespace tracing {
12 
GetCurrentPlatform()13 v8::Platform* TraceEventHelper::GetCurrentPlatform() {
14   return v8::internal::V8::GetCurrentPlatform();
15 }
16 
17 }  // namespace tracing
18 }  // namespace internal
19 }  // namespace v8
20