blob: ccd9df2fe0c73a713c52037c1b4fa8a38033bf4f [file] [log] [blame]
// Copyright 2015 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 "content/public/browser/background_tracing_config.h"
#include "content/browser/tracing/background_tracing_config_impl.h"
namespace content {
BackgroundTracingConfig::BackgroundTracingConfig(TracingMode tracing_mode)
: tracing_mode_(tracing_mode) {}
BackgroundTracingConfig::~BackgroundTracingConfig() {}
std::unique_ptr<BackgroundTracingConfig> BackgroundTracingConfig::FromDict(
const base::DictionaryValue* dict) {
return BackgroundTracingConfigImpl::FromDict(dict);
}
} // namespace content