chromium/content/browser/devtools/protocol/device_orientation_handler.h

// Copyright 2024 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

#ifndef CONTENT_BROWSER_DEVTOOLS_PROTOCOL_DEVICE_ORIENTATION_HANDLER_H_
#define CONTENT_BROWSER_DEVTOOLS_PROTOCOL_DEVICE_ORIENTATION_HANDLER_H_

#include <memory>

#include "base/memory/raw_ptr.h"
#include "content/browser/devtools/protocol/device_orientation.h"
#include "content/browser/devtools/protocol/devtools_domain_handler.h"

namespace content {

class RenderFrameHostImpl;
class ScopedVirtualSensorForDevTools;
class WebContentsImpl;

namespace protocol {

// Handling of this CDP domain is also partially implemented in Blink. See
// DeviceOrientationInspectorAgent.
class DeviceOrientationHandler : public DevToolsDomainHandler,
                                 public DeviceOrientation::Backend {};

}  // namespace protocol
}  // namespace content

#endif  // CONTENT_BROWSER_DEVTOOLS_PROTOCOL_DEVICE_ORIENTATION_HANDLER_H_