blob: f667b6e0f1b89cc152539821f3c48bf94630efe3 [file] [log] [blame]
// Copyright 2014 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_DEVICE_ORIENTATION_DEVICE_ORIENTATION_INSPECTOR_AGENT_H_
#define THIRD_PARTY_BLINK_RENDERER_MODULES_DEVICE_ORIENTATION_DEVICE_ORIENTATION_INSPECTOR_AGENT_H_
#include "base/macros.h"
#include "third_party/blink/renderer/core/inspector/inspector_base_agent.h"
#include "third_party/blink/renderer/core/inspector/protocol/DeviceOrientation.h"
#include "third_party/blink/renderer/modules/modules_export.h"
namespace blink {
class DeviceOrientationController;
class InspectedFrames;
class SensorInspectorAgent;
class MODULES_EXPORT DeviceOrientationInspectorAgent final
: public InspectorBaseAgent<protocol::DeviceOrientation::Metainfo> {
public:
explicit DeviceOrientationInspectorAgent(InspectedFrames*);
~DeviceOrientationInspectorAgent() override;
void Trace(Visitor*) const override;
// Protocol methods.
protocol::Response setDeviceOrientationOverride(double,
double,
double) override;
protocol::Response clearDeviceOrientationOverride() override;
protocol::Response disable() override;
void Restore() override;
void DidCommitLoadForLocalFrame(LocalFrame*) override;
private:
DeviceOrientationController& Controller();
Member<InspectedFrames> inspected_frames_;
Member<SensorInspectorAgent> sensor_agent_;
InspectorAgentState::Boolean enabled_;
InspectorAgentState::Double alpha_;
InspectorAgentState::Double beta_;
InspectorAgentState::Double gamma_;
DISALLOW_COPY_AND_ASSIGN(DeviceOrientationInspectorAgent);
};
} // namespace blink
#endif // !defined(DeviceOrientationInspectorAgent_h)