summaryrefslogtreecommitdiff
path: root/chromium/content/public/browser/background_tracing_config.cc
blob: ccd9df2fe0c73a713c52037c1b4fa8a38033bf4f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
// 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