OLD | NEW |
---|---|
(Empty) | |
1 // Copyright (c) 2012 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 // This file implements the Windows service controlling Me2Me host processes | |
6 // running within user sessions. | |
Lambros
2012/03/15 22:24:14
Drive-by: I don't think we need this class on non-
alexeypa (please no reviews)
2012/03/15 22:27:12
Oops. That was a stale comment. I wasn't planning
| |
7 | |
8 #include "remoting/host/worker_process_launcher.h" | |
9 | |
10 namespace remoting { | |
11 | |
12 // static | |
13 scoped_ptr<WorkerProcessLauncher> WorkerProcessLauncher::Create( | |
14 base::MessageLoopProxy* ipc_message_loop) { | |
15 return scoped_ptr<WorkerProcessLauncher>( | |
16 new WorkerProcessLauncher(ipc_message_loop)); | |
17 } | |
18 | |
19 } // namespace remoting | |
OLD | NEW |