#include "third_party/blink/renderer/modules/sensor/gyroscope.h"
#include "third_party/blink/public/mojom/permissions_policy/permissions_policy_feature.mojom-blink.h"
SensorType;
namespace blink {
Gyroscope* Gyroscope::Create(ExecutionContext* execution_context,
const SpatialSensorOptions* options,
ExceptionState& exception_state) { … }
Gyroscope* Gyroscope::Create(ExecutionContext* execution_context,
ExceptionState& exception_state) { … }
Gyroscope::Gyroscope(ExecutionContext* execution_context,
const SpatialSensorOptions* options,
ExceptionState& exception_state)
: … { … }
std::optional<double> Gyroscope::x() const { … }
std::optional<double> Gyroscope::y() const { … }
std::optional<double> Gyroscope::z() const { … }
void Gyroscope::Trace(Visitor* visitor) const { … }
}