blob: 3bf7deb0a300c77cccb848668452a607a6334dee [file] [log] [blame]
[email protected]37961b12011-03-30 12:39:001// 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]0b7e4282011-04-04 22:44:115#include "remoting/host/curtain.h"
6
7#include "base/basictypes.h"
8#include "base/compiler_specific.h"
[email protected]37961b12011-03-30 12:39:009#include "base/logging.h"
10
11namespace remoting {
12
[email protected]0b7e4282011-04-04 22:44:1113namespace {
14
15class 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]37961b12011-03-30 12:39:0023void CurtainLinux::EnableCurtainMode(bool enable) {
24 NOTIMPLEMENTED();
25}
26
[email protected]0b7e4282011-04-04 22:44:1127} // namespace
28
[email protected]37961b12011-03-30 12:39:0029Curtain* Curtain::Create() {
30 return new CurtainLinux();
31}
32
33} // namespace remoting