chromium/content/shell/common/power_monitor_test_impl.cc

// Copyright 2017 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

#include "content/shell/common/power_monitor_test_impl.h"

#include <memory>
#include <utility>

#include "mojo/public/cpp/bindings/pending_receiver.h"
#include "mojo/public/cpp/bindings/self_owned_receiver.h"

namespace content {

// static
void PowerMonitorTestImpl::MakeSelfOwnedReceiver(
    mojo::PendingReceiver<mojom::PowerMonitorTest> receiver) {}

PowerMonitorTestImpl::PowerMonitorTestImpl() {}

PowerMonitorTestImpl::~PowerMonitorTestImpl() {}

void PowerMonitorTestImpl::QueryNextState(QueryNextStateCallback callback) {}

void PowerMonitorTestImpl::OnPowerStateChange(bool on_battery_power) {}

void PowerMonitorTestImpl::ReportState() {}

}  // namespace content