blob: 1efde15ac2a29071d70db6263d6c14698a96bd5b [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() {}
scoped_ptr<BackgroundTracingConfig> BackgroundTracingConfig::FromDict(
const base::DictionaryValue* dict) {
return BackgroundTracingConfigImpl::FromDict(dict);
}
} // namespace content