diff options
author | dmaclach@chromium.org <dmaclach@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-04-04 22:44:11 +0000 |
---|---|---|
committer | dmaclach@chromium.org <dmaclach@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-04-04 22:44:11 +0000 |
commit | 0b7e42805341699a240997b202d4d23aed4b458b (patch) | |
tree | 44b31edf61ace0f552a113dd56368768d9774598 /remoting/host/curtain_mac.cc | |
parent | 167d52bbfbfc80f2232474eddfeb8bc587008d71 (diff) | |
download | chromium_src-0b7e42805341699a240997b202d4d23aed4b458b.zip chromium_src-0b7e42805341699a240997b202d4d23aed4b458b.tar.gz chromium_src-0b7e42805341699a240997b202d4d23aed4b458b.tar.bz2 |
Clean up remoting project
Cleaned up some file names so it simplifies our project, and gets us more inline with chromium standards.
Removed several unnecessary headers that were cluttering the remoting namespace.
Simplified some of the double pimpl implementations that we had on Linux to hide X11 stuff.
Got HostAuthentication working reasonably well as a mock.
BUG=NONE
TEST=BUILD
Review URL: http://codereview.chromium.org/6780014
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@80385 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'remoting/host/curtain_mac.cc')
-rw-r--r-- | remoting/host/curtain_mac.cc | 18 |
1 files changed, 17 insertions, 1 deletions
diff --git a/remoting/host/curtain_mac.cc b/remoting/host/curtain_mac.cc index 0055e68..b6c741a 100644 --- a/remoting/host/curtain_mac.cc +++ b/remoting/host/curtain_mac.cc @@ -2,15 +2,31 @@ // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. -#include "remoting/host/curtain_mac.h" +#include "remoting/host/curtain.h" + +#include "base/basictypes.h" +#include "base/compiler_specific.h" #include "base/logging.h" namespace remoting { +namespace { + +class CurtainMac : public Curtain { + public: + CurtainMac() {} + virtual void EnableCurtainMode(bool enable) OVERRIDE; + + private: + DISALLOW_COPY_AND_ASSIGN(CurtainMac); +}; + void CurtainMac::EnableCurtainMode(bool enable) { NOTIMPLEMENTED(); } +} // namespace + Curtain* Curtain::Create() { return new CurtainMac(); } |