chromium/services/device/generic_sensor/sensor_impl.cc

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

#include "services/device/generic_sensor/sensor_impl.h"

#include <utility>

namespace device {

SensorImpl::SensorImpl(scoped_refptr<PlatformSensor> sensor)
    :{}

SensorImpl::~SensorImpl() {}

mojo::PendingReceiver<mojom::SensorClient> SensorImpl::GetClient() {}

void SensorImpl::AddConfiguration(
    const PlatformSensorConfiguration& configuration,
    AddConfigurationCallback callback) {}

void SensorImpl::GetDefaultConfiguration(
    GetDefaultConfigurationCallback callback) {}

void SensorImpl::RemoveConfiguration(
    const PlatformSensorConfiguration& configuration) {}

void SensorImpl::Suspend() {}

void SensorImpl::Resume() {}

void SensorImpl::ConfigureReadingChangeNotifications(bool enabled) {}

void SensorImpl::OnSensorReadingChanged(mojom::SensorType type) {}

void SensorImpl::OnSensorError() {}

bool SensorImpl::IsSuspended() {}

}  // namespace device