| Index: content/browser/device_sensors/device_sensor_host.cc
|
| diff --git a/content/browser/device_sensors/device_sensor_host.cc b/content/browser/device_sensors/device_sensor_host.cc
|
| deleted file mode 100644
|
| index 06c898af88cad1e2f2d40b970df586861c1331db..0000000000000000000000000000000000000000
|
| --- a/content/browser/device_sensors/device_sensor_host.cc
|
| +++ /dev/null
|
| @@ -1,72 +0,0 @@
|
| -// Copyright 2016 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/device_sensors/device_sensor_host.h"
|
| -
|
| -#include "base/memory/ptr_util.h"
|
| -#include "base/message_loop/message_loop.h"
|
| -#include "content/browser/device_sensors/device_sensor_service.h"
|
| -#include "mojo/public/cpp/bindings/strong_binding.h"
|
| -
|
| -namespace content {
|
| -
|
| -template <typename MojoInterface, ConsumerType consumer_type>
|
| -void DeviceSensorHost<MojoInterface, consumer_type>::Create(
|
| - mojo::InterfaceRequest<MojoInterface> request) {
|
| - mojo::MakeStrongBinding(
|
| - base::WrapUnique(new DeviceSensorHost<MojoInterface, consumer_type>),
|
| - std::move(request));
|
| -}
|
| -
|
| -template <typename MojoInterface, ConsumerType consumer_type>
|
| -DeviceSensorHost<MojoInterface, consumer_type>::DeviceSensorHost()
|
| - : is_started_(false) {
|
| -#if defined(OS_ANDROID)
|
| - DCHECK(base::MessageLoopForUI::IsCurrent());
|
| -#else
|
| - DCHECK(base::MessageLoopForIO::IsCurrent());
|
| -#endif
|
| -}
|
| -
|
| -template <typename MojoInterface, ConsumerType consumer_type>
|
| -DeviceSensorHost<MojoInterface, consumer_type>::~DeviceSensorHost() {
|
| - DCHECK(thread_checker_.CalledOnValidThread());
|
| - if (is_started_)
|
| - DeviceSensorService::GetInstance()->RemoveConsumer(consumer_type);
|
| -}
|
| -
|
| -template <typename MojoInterface, ConsumerType consumer_type>
|
| -void DeviceSensorHost<MojoInterface, consumer_type>::DeviceSensorHost::
|
| - StartPolling(const typename MojoInterface::StartPollingCallback& callback) {
|
| - DCHECK(thread_checker_.CalledOnValidThread());
|
| - DCHECK(!is_started_);
|
| - if (is_started_)
|
| - return;
|
| - is_started_ = true;
|
| - DeviceSensorService::GetInstance()->AddConsumer(consumer_type);
|
| - callback.Run(
|
| - DeviceSensorService::GetInstance()->GetSharedMemoryHandle(consumer_type));
|
| -}
|
| -
|
| -template <typename MojoInterface, ConsumerType consumer_type>
|
| -void DeviceSensorHost<MojoInterface,
|
| - consumer_type>::DeviceSensorHost::StopPolling() {
|
| - DCHECK(thread_checker_.CalledOnValidThread());
|
| - DCHECK(is_started_);
|
| - if (!is_started_)
|
| - return;
|
| - is_started_ = false;
|
| - DeviceSensorService::GetInstance()->RemoveConsumer(consumer_type);
|
| -}
|
| -
|
| -template class DeviceSensorHost<device::mojom::LightSensor,
|
| - CONSUMER_TYPE_LIGHT>;
|
| -template class DeviceSensorHost<device::mojom::MotionSensor,
|
| - CONSUMER_TYPE_MOTION>;
|
| -template class DeviceSensorHost<device::mojom::OrientationSensor,
|
| - CONSUMER_TYPE_ORIENTATION>;
|
| -template class DeviceSensorHost<device::mojom::OrientationAbsoluteSensor,
|
| - CONSUMER_TYPE_ORIENTATION_ABSOLUTE>;
|
| -
|
| -} // namespace content
|
|
|