chromium/third_party/blink/renderer/modules/device_orientation/device_sensor_event_pump.cc

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

#include "third_party/blink/renderer/modules/device_orientation/device_sensor_event_pump.h"

#include "third_party/blink/renderer/core/frame/local_dom_window.h"
#include "third_party/blink/renderer/core/frame/local_frame.h"

namespace blink {

void DeviceSensorEventPump::Start(LocalFrame& frame) {}

void DeviceSensorEventPump::Stop() {}

void DeviceSensorEventPump::HandleSensorProviderError() {}

void DeviceSensorEventPump::SetSensorProviderForTesting(
    mojo::PendingRemote<mojom::blink::WebSensorProvider> sensor_provider) {}

DeviceSensorEventPump::PumpState
DeviceSensorEventPump::GetPumpStateForTesting() {}

void DeviceSensorEventPump::Trace(Visitor* visitor) const {}

DeviceSensorEventPump::DeviceSensorEventPump(LocalFrame& frame)
    :{}

DeviceSensorEventPump::~DeviceSensorEventPump() = default;

void DeviceSensorEventPump::DidStartIfPossible() {}

}  // namespace blink