| Index: remoting/host/win/session_desktop_environment_factory.h
 | 
| diff --git a/remoting/host/win/session_desktop_environment_factory.h b/remoting/host/win/session_desktop_environment_factory.h
 | 
| new file mode 100644
 | 
| index 0000000000000000000000000000000000000000..6f7123048eafc3dd442f4a64386daea18547c81e
 | 
| --- /dev/null
 | 
| +++ b/remoting/host/win/session_desktop_environment_factory.h
 | 
| @@ -0,0 +1,26 @@
 | 
| +// Copyright (c) 2012 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.
 | 
| +
 | 
| +#ifndef REMOTING_HOST_WIN_SESSION_DESKTOP_ENVIRONMENT_FACTORY_H_
 | 
| +#define REMOTING_HOST_WIN_SESSION_DESKTOP_ENVIRONMENT_FACTORY_H_
 | 
| +
 | 
| +#include "remoting/host/desktop_environment_factory.h"
 | 
| +
 | 
| +namespace remoting {
 | 
| +
 | 
| +class SessionDesktopEnvironmentFactory : public DesktopEnvironmentFactory {
 | 
| + public:
 | 
| +  SessionDesktopEnvironmentFactory();
 | 
| +  virtual ~SessionDesktopEnvironmentFactory();
 | 
| +
 | 
| +  virtual scoped_ptr<DesktopEnvironment> Create(
 | 
| +      ChromotingHostContext* context) OVERRIDE;
 | 
| +
 | 
| + private:
 | 
| +  DISALLOW_COPY_AND_ASSIGN(SessionDesktopEnvironmentFactory);
 | 
| +};
 | 
| +
 | 
| +}  // namespace remoting
 | 
| +
 | 
| +#endif  // REMOTING_HOST_WIN_SESSION_DESKTOP_ENVIRONMENT_FACTORY_H_
 | 
| 
 |