| OLD | NEW |
| (Empty) | |
| 1 // Copyright (c) 2013 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. |
| 4 |
| 5 #ifndef REMOTING_HOST_SCREEN_RESOLUTION_H_ |
| 6 #define REMOTING_HOST_SCREEN_RESOLUTION_H_ |
| 7 |
| 8 #include "base/basictypes.h" |
| 9 #include "base/compiler_specific.h" |
| 10 #include "third_party/skia/include/core/SkPoint.h" |
| 11 #include "third_party/skia/include/core/SkSize.h" |
| 12 |
| 13 namespace remoting { |
| 14 |
| 15 // Describes a screen's dimensions and DPI. |
| 16 class ScreenResolution { |
| 17 public: |
| 18 ScreenResolution(); |
| 19 |
| 20 ScreenResolution(const SkISize& dimensions, const SkIPoint& dpi); |
| 21 |
| 22 // Returns the screen dimensions scaled according to the passed |new_dpi|. |
| 23 SkISize ScaleDimensionsToDpi(const SkIPoint& new_dpi) const; |
| 24 |
| 25 // Returns true if |dimensions_| specifies an empty rectangle or when |
| 26 // IsValid() returns false. |
| 27 bool IsEmpty() const; |
| 28 |
| 29 // Returns true if both |dimensions_| and |dpi_| are valid. |dimensions_| |
| 30 // specifying an empty rectangle is considered to be valid. |
| 31 bool IsValid() const; |
| 32 |
| 33 // Dimensions of the screen in pixels. |
| 34 SkISize dimensions_; |
| 35 |
| 36 // The vertical and horizontal DPI of the screen. |
| 37 SkIPoint dpi_; |
| 38 }; |
| 39 |
| 40 } // namespace remoting |
| 41 |
| 42 #endif // REMOTING_HOST_SCREEN_RESOLUTION_H_ |
| OLD | NEW |