blob: df25023c1ea85d3c57bb68ce3faeb89df0bde5a4 [file] [log] [blame]
// 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.
#ifndef THIRD_PARTY_BLINK_RENDERER_MODULES_SENSOR_AMBIENT_LIGHT_SENSOR_H_
#define THIRD_PARTY_BLINK_RENDERER_MODULES_SENSOR_AMBIENT_LIGHT_SENSOR_H_
#include "base/gtest_prod_util.h"
#include "base/optional.h"
#include "third_party/blink/renderer/modules/modules_export.h"
#include "third_party/blink/renderer/modules/sensor/sensor.h"
namespace blink {
class MODULES_EXPORT AmbientLightSensor final : public Sensor {
DEFINE_WRAPPERTYPEINFO();
public:
static AmbientLightSensor* Create(ExecutionContext*,
const SensorOptions*,
ExceptionState&);
static AmbientLightSensor* Create(ExecutionContext*, ExceptionState&);
AmbientLightSensor(ExecutionContext*, const SensorOptions*, ExceptionState&);
bool hasReading() const override;
base::Optional<double> illuminance() const;
void OnSensorReadingChanged() override;
private:
base::Optional<double> latest_reading_;
FRIEND_TEST_ALL_PREFIXES(AmbientLightSensorTest, IlluminanceRounding);
FRIEND_TEST_ALL_PREFIXES(AmbientLightSensorTest,
PlatformSensorReadingsBeforeActivation);
};
} // namespace blink
#endif // THIRD_PARTY_BLINK_RENDERER_MODULES_SENSOR_AMBIENT_LIGHT_SENSOR_H_