| Index: remoting/host/curtain_win.cc
|
| diff --git a/remoting/host/curtain_win.cc b/remoting/host/curtain_win.cc
|
| index 30a9868367e6c080a2f7a7b9b78bb5b2d822eb16..05226a7c769b86c2d32d1ddaf8d994bf54963491 100644
|
| --- a/remoting/host/curtain_win.cc
|
| +++ b/remoting/host/curtain_win.cc
|
| @@ -2,15 +2,26 @@
|
| // 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 "remoting/host/curtain.h"
|
| +
|
| +#include "base/compiler_specific.h"
|
| #include "base/logging.h"
|
|
|
| namespace remoting {
|
|
|
| +namespace {
|
| +
|
| +class CurtainWin : public Curtain {
|
| + public:
|
| + virtual void EnableCurtainMode(bool enable) OVERRIDE;
|
| +};
|
| +
|
| void CurtainWin::EnableCurtainMode(bool enable) {
|
| NOTIMPLEMENTED();
|
| }
|
|
|
| +} // namespace
|
| +
|
| Curtain* Curtain::Create() {
|
| return new CurtainWin();
|
| }
|
|
|