OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:DesktopSession
(Results
1 - 8
of
8
) sorted by null
/external/chromium_org/remoting/host/
desktop_session.cc
12
DesktopSession
::~
DesktopSession
() {
15
DesktopSession
::
DesktopSession
(DaemonProcess* daemon_process, int id)
desktop_session.h
18
class
DesktopSession
{
20
virtual ~
DesktopSession
();
30
DesktopSession
(DaemonProcess* daemon_process, int id);
41
DISALLOW_COPY_AND_ASSIGN(
DesktopSession
);
desktop_session_win.h
26
class
DesktopSession
;
31
//
DesktopSession
implementation which attaches to either physical or virtual
36
: public
DesktopSession
,
41
static scoped_ptr<
DesktopSession
> CreateForConsole(
49
static scoped_ptr<
DesktopSession
> CreateForVirtualTerminal(
daemon_process.h
33
class
DesktopSession
;
46
typedef std::list<
DesktopSession
*> DesktopSessionList;
129
virtual scoped_ptr<
DesktopSession
> DoCreateDesktopSession(
daemon_process_unittest.cc
39
//
DesktopSession
directly.
40
class FakeDesktopSession : public
DesktopSession
{
60
virtual scoped_ptr<
DesktopSession
> DoCreateDesktopSession(
74
MOCK_METHOD1(DoCreateDesktopSessionPtr,
DesktopSession
*(int));
83
:
DesktopSession
(daemon_process, id) {
99
scoped_ptr<
DesktopSession
> MockDaemonProcess::DoCreateDesktopSession(
103
return scoped_ptr<
DesktopSession
>(DoCreateDesktopSessionPtr(terminal_id));
131
DesktopSession
* DoCreateDesktopSession(int terminal_id);
188
DesktopSession
* DaemonProcessTest::DoCreateDesktopSession(int terminal_id) {
desktop_session_win.cc
82
//
DesktopSession
implementation which attaches to the host's physical console.
98
//
DesktopSession
overrides.
110
//
DesktopSession
implementation which attaches to virtual RDP console.
133
//
DesktopSession
overrides.
368
scoped_ptr<
DesktopSession
> DesktopSessionWin::CreateForConsole(
378
return session.PassAs<
DesktopSession
>();
382
scoped_ptr<
DesktopSession
> DesktopSessionWin::CreateForVirtualTerminal(
392
return scoped_ptr<
DesktopSession
>();
394
return session.PassAs<
DesktopSession
>();
403
:
DesktopSession
(daemon_process, id)
[
all
...]
daemon_process_win.cc
67
virtual scoped_ptr<
DesktopSession
> DoCreateDesktopSession(
150
scoped_ptr<
DesktopSession
> DaemonProcessWin::DoCreateDesktopSession(
daemon_process.cc
197
scoped_ptr<
DesktopSession
> session = DoCreateDesktopSession(
Completed in 147 milliseconds