trace_event.h 791 字节
Newer Older
1 2 3 4 5
// Copyright 2016 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

#if defined(__Fuchsia__)
A
Adam Barth 已提交
6 7
#include "apps/tracing/lib/trace/event.h"

8 9 10 11 12
#define TRACE_EVENT0(a, b) TRACE_DURATION(a, b)
#define TRACE_EVENT1(a, b, c, d) TRACE_DURATION(a, b, c, d)
#define TRACE_EVENT2(a, b, c, d, e, f) TRACE_DURATION(a, b, c, d, e, f)
#define TRACE_EVENT_ASYNC_BEGIN0(a, b, c) TRACE_ASYNC_BEGIN(a, b, c)
#define TRACE_EVENT_ASYNC_END0(a, b, c) TRACE_ASYNC_END(a, b, c)
A
Adam Barth 已提交
13
#define TRACE_EVENT_ASYNC_BEGIN1(a, b, c, d, e) \
14 15
  TRACE_ASYNC_BEGIN(a, b, c, d, e)
#define TRACE_EVENT_ASYNC_END1(a, b, c, d, e) TRACE_ASYNC_END(a, b, c, d, e)
A
Adam Barth 已提交
16

17 18 19
#else
#include "base/trace_event/trace_event.h"
#endif  // defined(__Fuchsia__)