[email protected] | 37961b1 | 2011-03-30 12:39:00 | [diff] [blame] | 1 | // Copyright (c) 2011 The Chromium Authors. All rights reserved. |
2 | // Use of this source code is governed by a BSD-style license that can be | ||||
3 | // found in the LICENSE file. | ||||
4 | |||||
[email protected] | 0b7e428 | 2011-04-04 22:44:11 | [diff] [blame] | 5 | #include "remoting/host/curtain.h" |
6 | |||||
7 | #include "base/basictypes.h" | ||||
8 | #include "base/compiler_specific.h" | ||||
[email protected] | 37961b1 | 2011-03-30 12:39:00 | [diff] [blame] | 9 | #include "base/logging.h" |
10 | |||||
11 | namespace remoting { | ||||
12 | |||||
[email protected] | 0b7e428 | 2011-04-04 22:44:11 | [diff] [blame] | 13 | namespace { |
14 | |||||
15 | class CurtainLinux : public Curtain { | ||||
16 | public: | ||||
17 | CurtainLinux() {} | ||||
18 | virtual void EnableCurtainMode(bool enable) OVERRIDE; | ||||
19 | private: | ||||
20 | DISALLOW_COPY_AND_ASSIGN(CurtainLinux); | ||||
21 | }; | ||||
22 | |||||
[email protected] | 37961b1 | 2011-03-30 12:39:00 | [diff] [blame] | 23 | void CurtainLinux::EnableCurtainMode(bool enable) { |
24 | NOTIMPLEMENTED(); | ||||
25 | } | ||||
26 | |||||
[email protected] | 0b7e428 | 2011-04-04 22:44:11 | [diff] [blame] | 27 | } // namespace |
28 | |||||
[email protected] | 37961b1 | 2011-03-30 12:39:00 | [diff] [blame] | 29 | Curtain* Curtain::Create() { |
30 | return new CurtainLinux(); | ||||
31 | } | ||||
32 | |||||
33 | } // namespace remoting |