blob: ccd9df2fe0c73a713c52037c1b4fa8a38033bf4f [file] [log] [blame]
simonhatch0b016192015-05-22 19:14:021// Copyright 2015 The Chromium Authors. All rights reserved.
2// Use of this source code is governed by a BSD-style license that can be
3// found in the LICENSE file.
4
5#include "content/public/browser/background_tracing_config.h"
6
oysteinef4ce0b062015-08-26 01:33:067#include "content/browser/tracing/background_tracing_config_impl.h"
8
simonhatch0b016192015-05-22 19:14:029namespace content {
10
oysteinef4ce0b062015-08-26 01:33:0611BackgroundTracingConfig::BackgroundTracingConfig(TracingMode tracing_mode)
12 : tracing_mode_(tracing_mode) {}
simonhatch0b016192015-05-22 19:14:0213
oysteinef4ce0b062015-08-26 01:33:0614BackgroundTracingConfig::~BackgroundTracingConfig() {}
15
dcheng6003e0b2016-04-09 18:42:3416std::unique_ptr<BackgroundTracingConfig> BackgroundTracingConfig::FromDict(
oysteinef4ce0b062015-08-26 01:33:0617 const base::DictionaryValue* dict) {
18 return BackgroundTracingConfigImpl::FromDict(dict);
simonhatch0b016192015-05-22 19:14:0219}
20
21} // namespace content