blob: 24a5bdb87562c65231aa8a41abc664c91fb2e430 [file] [log] [blame]
// Copyright 2017 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.
#ifndef AbsoluteOrientationSensor_h
#define AbsoluteOrientationSensor_h
#include "modules/sensor/OrientationSensor.h"
#include "modules/sensor/SpatialSensorOptions.h"
namespace blink {
class AbsoluteOrientationSensor final : public OrientationSensor {
DEFINE_WRAPPERTYPEINFO();
public:
static AbsoluteOrientationSensor* Create(ExecutionContext*,
const SpatialSensorOptions&,
ExceptionState&);
static AbsoluteOrientationSensor* Create(ExecutionContext*, ExceptionState&);
virtual void Trace(blink::Visitor*);
private:
AbsoluteOrientationSensor(ExecutionContext*,
const SpatialSensorOptions&,
ExceptionState&);
};
} // namespace blink
#endif // AbsoluteOrientationSensor_h