chromium/remoting/host/desktop_display_layout_util.cc

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

#include "remoting/host/desktop_display_layout_util.h"

#include <stdint.h>

#include "base/logging.h"
#include "base/ranges/algorithm.h"

namespace remoting {

DisplayLayoutDiff::DisplayLayoutDiff() = default;
DisplayLayoutDiff::DisplayLayoutDiff(const DisplayLayoutDiff&) = default;
DisplayLayoutDiff::DisplayLayoutDiff(DisplayLayoutDiff&&) = default;
DisplayLayoutDiff::~DisplayLayoutDiff() = default;

DisplayLayoutDiff CalculateDisplayLayoutDiff(
    const std::vector<DesktopLayoutWithContext>& current_displays,
    const DesktopLayoutSet& new_layout) {}

}  // namespace remoting