summaryrefslogtreecommitdiffstats
path: root/content/browser/tracing/battor_power_trace_provider.cc
blob: 485db6240a65a6729b878365d29e1143947655fd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
// 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/browser/tracing/battor_power_trace_provider.h"

namespace content {

BattorPowerTraceProvider::BattorPowerTraceProvider() {}

BattorPowerTraceProvider::~BattorPowerTraceProvider() {}

bool BattorPowerTraceProvider::IsConnected() {
  return true;
}

bool BattorPowerTraceProvider::StartTracing() {
  return true;
}

bool BattorPowerTraceProvider::StopTracing() {
  return true;
}

void BattorPowerTraceProvider::GetLog(std::string* log_str) {
  // Get logs from battor.
  *log_str = "";
}
}