chromium/remoting/host/base/screen_resolution.cc

// Copyright 2013 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/base/screen_resolution.h"

#include <stdint.h>

#include <algorithm>
#include <limits>

#include "base/check_op.h"

namespace remoting {

ScreenResolution::ScreenResolution()
    :{}

ScreenResolution::ScreenResolution(const webrtc::DesktopSize& dimensions,
                                   const webrtc::DesktopVector& dpi)
    :{}

webrtc::DesktopSize ScreenResolution::ScaleDimensionsToDpi(
    const webrtc::DesktopVector& new_dpi) const {}

bool ScreenResolution::IsEmpty() const {}

bool ScreenResolution::Equals(const ScreenResolution& other) const {}

}  // namespace remoting