// 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. #ifndef SERVICES_DEVICE_GENERIC_SENSOR_PLATFORM_SENSOR_PROVIDER_H_ #define SERVICES_DEVICE_GENERIC_SENSOR_PLATFORM_SENSOR_PROVIDER_H_ #include <memory> #include "base/memory/read_only_shared_memory_region.h" #include "base/task/single_thread_task_runner.h" #include "base/threading/thread_checker.h" #include "services/device/generic_sensor/platform_sensor.h" namespace device { // Base class that defines factory methods for PlatformSensor creation. class PlatformSensorProvider { … }; } // namespace device #endif // SERVICES_DEVICE_GENERIC_SENSOR_PLATFORM_SENSOR_PROVIDER_H_