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

Side by Side Diff: mojo/shell/child_process.h

Issue 1049993002: Get mojo_shell building inside chromium checkout. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: fix presubmit Created 5 years, 8 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
« no previous file with comments | « mojo/shell/application_manager/test.mojom ('k') | mojo/shell/child_process.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 // Copyright 2014 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 SHELL_CHILD_PROCESS_H_
6 #define SHELL_CHILD_PROCESS_H_
7
8 #include "base/macros.h"
9 #include "base/memory/scoped_ptr.h"
10 #include "mojo/edk/embedder/scoped_platform_handle.h"
11
12 namespace base {
13 class CommandLine;
14 }
15
16 namespace mojo {
17 namespace shell {
18
19 // A base class for child processes -- i.e., code that is actually run within
20 // the child process. (Instances are manufactured by |Create()|.)
21 class ChildProcess {
22 public:
23 virtual ~ChildProcess();
24
25 // Returns null if the command line doesn't indicate that this is a child
26 // process. |main()| should call this, and if it returns non-null it should
27 // call |Main()| (without a message loop on the current thread).
28 static scoped_ptr<ChildProcess> Create(const base::CommandLine& command_line);
29
30 // To be implemented by subclasses. This is the "entrypoint" for a child
31 // process. Run with no message loop for the main thread.
32 virtual void Main() = 0;
33
34 protected:
35 ChildProcess();
36
37 embedder::ScopedPlatformHandle* platform_channel() {
38 return &platform_channel_;
39 }
40
41 private:
42 // Available in |Main()| (after a successful |Create()|).
43 embedder::ScopedPlatformHandle platform_channel_;
44
45 DISALLOW_COPY_AND_ASSIGN(ChildProcess);
46 };
47
48 } // namespace shell
49 } // namespace mojo
50
51 #endif // SHELL_CHILD_PROCESS_H_
OLDNEW
« no previous file with comments | « mojo/shell/application_manager/test.mojom ('k') | mojo/shell/child_process.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698