blob: 3c03c2acf755a9be0c1c2ce5533b3842a0c9f2e7 (
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
|
// 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.
#include "remoting/host/plugin/daemon_controller.h"
#include "base/basictypes.h"
#include "base/compiler_specific.h"
#include "base/logging.h"
namespace remoting {
namespace {
class DaemonControllerWin : public remoting::DaemonController {
public:
DaemonControllerWin();
virtual State GetState() OVERRIDE;
virtual bool SetPin(const std::string& pin) OVERRIDE;
virtual bool Start() OVERRIDE;
virtual bool Stop() OVERRIDE;
private:
DISALLOW_COPY_AND_ASSIGN(DaemonControllerWin);
};
DaemonControllerWin::DaemonControllerWin() {
}
remoting::DaemonController::State DaemonControllerWin::GetState() {
return remoting::DaemonController::STATE_NOT_IMPLEMENTED;
}
bool DaemonControllerWin::SetPin(const std::string& pin) {
NOTIMPLEMENTED();
return false;
}
bool DaemonControllerWin::Start() {
NOTIMPLEMENTED();
return false;
}
bool DaemonControllerWin::Stop() {
NOTIMPLEMENTED();
return false;
}
} // namespace
DaemonController* remoting::DaemonController::Create() {
return new DaemonControllerWin();
}
} // namespace remoting
|