Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(258)

Side by Side Diff: remoting/host/worker_process_launcher_posix.cc

Issue 9705065: Introducing the WorkerProcessLauncher class implementing the common logic for spawning a worker pro… (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 8 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
(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
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698