diff options
Diffstat (limited to 'remoting/host/curtain_win.cc')
-rw-r--r-- | remoting/host/curtain_win.cc | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/remoting/host/curtain_win.cc b/remoting/host/curtain_win.cc new file mode 100644 index 0000000..30a9868 --- /dev/null +++ b/remoting/host/curtain_win.cc @@ -0,0 +1,18 @@ +// Copyright (c) 2011 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/curtain_win.h" +#include "base/logging.h" + +namespace remoting { + +void CurtainWin::EnableCurtainMode(bool enable) { + NOTIMPLEMENTED(); +} + +Curtain* Curtain::Create() { + return new CurtainWin(); +} + +} // namespace remoting |