blob: 4dd8a3bf7e490262bd8c19972bdeb9fa23bf6426 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
|
// Copyright (c) 2012 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef REMOTING_HOST_DESKTOP_SESSION_H_
#define REMOTING_HOST_DESKTOP_SESSION_H_
#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 {
public:
virtual ~DesktopSession();
int id() const { return id_; }
protected:
// Creates a terminal and assigns a unique identifier to it. |daemon_process|
// must outlive |this|.
DesktopSession(DaemonProcess* daemon_process, int id);
DaemonProcess* daemon_process() const { return daemon_process_; }
private:
// The owner of |this|.
DaemonProcess* const daemon_process_;
// A unique identifier of the terminal.
const int id_;
DISALLOW_COPY_AND_ASSIGN(DesktopSession);
};
} // namespace remoting
#endif // REMOTING_HOST_DESKTOP_SESSION_H_
|