chromium/base/trace_event/trace_log_constants.cc

// Copyright 2013 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

#include "base/trace_event/trace_log.h"

namespace base {
namespace trace_event {

// Constant used by TraceLog's internal implementation of trace_option.
const TraceLog::InternalTraceOptions
    TraceLog::kInternalNone =;
const TraceLog::InternalTraceOptions
    TraceLog::kInternalRecordUntilFull =;
const TraceLog::InternalTraceOptions
    TraceLog::kInternalRecordContinuously =;
// 1 << 2 is reserved for the DEPRECATED kInternalEnableSampling. DO NOT USE.
const TraceLog::InternalTraceOptions
    TraceLog::kInternalEchoToConsole =;
const TraceLog::InternalTraceOptions
    TraceLog::kInternalRecordAsMuchAsPossible =;
const TraceLog::InternalTraceOptions
    TraceLog::kInternalEnableArgumentFilter =;

}  // namespace trace_event
}  // namespace base