blob: 0c82c255b96e018c125f1a8dd765c816806bfafe [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"
namespace blink {
class AbsoluteOrientationSensor final : public OrientationSensor {
DEFINE_WRAPPERTYPEINFO();
public:
static AbsoluteOrientationSensor* Create(ExecutionContext*,
const SensorOptions&,
ExceptionState&);
static AbsoluteOrientationSensor* Create(ExecutionContext*, ExceptionState&);
DECLARE_VIRTUAL_TRACE();
private:
AbsoluteOrientationSensor(ExecutionContext*,
const SensorOptions&,
ExceptionState&);
};
} // namespace blink
#endif // AbsoluteOrientationSensor_h