Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1525)

Unified Diff: remoting/host/desktop_session.h

Issue 12678008: Reworked the plumbing required to pass the client resolution to the desktop resizer. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: CR feedback. Created 7 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: remoting/host/desktop_session.h
diff --git a/remoting/host/desktop_session.h b/remoting/host/desktop_session.h
index 4dd8a3bf7e490262bd8c19972bdeb9fa23bf6426..8d98e92b250f1def292a578a899f361177e57289 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 {

Powered by Google App Engine
This is Rietveld 408576698