chromium/third_party/blink/public/common/widget/device_emulation_params.h

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

#ifndef THIRD_PARTY_BLINK_PUBLIC_COMMON_WIDGET_DEVICE_EMULATION_PARAMS_H_
#define THIRD_PARTY_BLINK_PUBLIC_COMMON_WIDGET_DEVICE_EMULATION_PARAMS_H_

#include <optional>

#include "third_party/blink/public/mojom/device_posture/device_posture_provider.mojom-shared.h"
#include "third_party/blink/public/mojom/widget/device_emulation_params.mojom-shared.h"
#include "ui/display/mojom/screen_orientation.mojom.h"
#include "ui/gfx/geometry/point.h"
#include "ui/gfx/geometry/point_f.h"
#include "ui/gfx/geometry/rect.h"
#include "ui/gfx/geometry/size.h"

namespace blink {

// All sizes are measured in device independent pixels.
struct DeviceEmulationParams {};

inline bool operator==(const DeviceEmulationParams& a,
                       const DeviceEmulationParams& b) {}

inline bool operator!=(const DeviceEmulationParams& a,
                       const DeviceEmulationParams& b) {}

}  // namespace blink

#endif  // THIRD_PARTY_BLINK_PUBLIC_COMMON_WIDGET_DEVICE_EMULATION_PARAMS_H_