summaryrefslogtreecommitdiff
path: root/base/trace_event/trace_event_filter.cc
blob: d50c5fe25167d011fc8034a4303eb085e790e00c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
// 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.

#include "base/compiler_specific.h"
#include "base/trace_event/trace_event_filter.h"

namespace base {
namespace trace_event {

TraceEventFilter::TraceEventFilter() {}
TraceEventFilter::~TraceEventFilter() {}

void TraceEventFilter::EndEvent(const char* category_name,
                                const char* event_name) const {
  ALLOW_UNUSED_PARAM(category_name);
  ALLOW_UNUSED_PARAM(event_name);
}

}  // namespace trace_event
}  // namespace base