| OLD | NEW |
| (Empty) |
| 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 | |
| 5 #ifndef REMOTING_HOST_CURTAIN_LINUX_H_ | |
| 6 #define REMOTING_HOST_CURTAIN_LINUX_H_ | |
| 7 | |
| 8 #include "remoting/host/curtain.h" | |
| 9 #include "base/compiler_specific.h" | |
| 10 | |
| 11 namespace remoting { | |
| 12 | |
| 13 class CurtainLinux : public Curtain { | |
| 14 public: | |
| 15 virtual void EnableCurtainMode(bool enable) OVERRIDE; | |
| 16 }; | |
| 17 | |
| 18 } // namespace remoting | |
| 19 | |
| 20 #endif // REMOTING_HOST_CURTAIN_LINUX_H_ | |
| OLD | NEW |