diff options
author | alexeypa@chromium.org <alexeypa@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-03-18 01:03:48 +0000 |
---|---|---|
committer | alexeypa@chromium.org <alexeypa@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-03-18 01:03:48 +0000 |
commit | 739e2803109683fec6e24ecbca3ad16fde7b43c4 (patch) | |
tree | d9459f07d896e6095e91f0590c420ea36495cecc /remoting/host/desktop_session.h | |
parent | 9e359452151c9bbeaff2fee78a8fde678a42749b (diff) | |
download | chromium_src-739e2803109683fec6e24ecbca3ad16fde7b43c4.zip chromium_src-739e2803109683fec6e24ecbca3ad16fde7b43c4.tar.gz chromium_src-739e2803109683fec6e24ecbca3ad16fde7b43c4.tar.bz2 |
Reworked the plumbing required to pass the client resolution to the desktop resizer.
This is mostly a renaming CL:
- DesktopSessionParams -> ScreenResolution
- OnClientResolutionChanged() -> SetScreenResolution().
Also added validation of ScreenResolution before passing it to session controllers.
BUG=196316
Review URL: https://codereview.chromium.org/12678008
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@188661 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'remoting/host/desktop_session.h')
-rw-r--r-- | remoting/host/desktop_session.h | 16 |
1 files changed, 0 insertions, 16 deletions
diff --git a/remoting/host/desktop_session.h b/remoting/host/desktop_session.h index 4dd8a3b..8d98e92 100644 --- a/remoting/host/desktop_session.h +++ b/remoting/host/desktop_session.h @@ -7,27 +7,11 @@ #include "base/basictypes.h" #include "base/compiler_specific.h" -#include "third_party/skia/include/core/SkPoint.h" -#include "third_party/skia/include/core/SkSize.h" namespace remoting { class DaemonProcess; -// This structure describes parameters required to create a desktop session. -struct DesktopSessionParams { - DesktopSessionParams(); - - // Vertical and horizontal DPI of the remote screen. The caller should pass - // (0, 0) if DPI of the remote screen is not known. The default 96 DPI will be - // assumed in that case. - SkIPoint client_dpi_; - - // Resolution of the remote screen in pixels. The caller should pass (0, 0) if - // resolution of the remote screen size in not known. - SkISize client_size_; -}; - // Represents the desktop session for a connected terminal. Each desktop session // has a unique identifier used by cross-platform code to refer to it. class DesktopSession { |