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

Side by Side Diff: mojo/shell/desktop/mojo_main.cc

Issue 420143003: mojo: shell::Context should outlive the shell MessageLoop (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: fix + verify android Created 6 years, 4 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
« no previous file with comments | « mojo/shell/context.cc ('k') | mojo/shell/dynamic_service_loader_unittest.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2013 The Chromium Authors. All rights reserved. 1 // Copyright 2013 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #include "base/at_exit.h" 5 #include "base/at_exit.h"
6 #include "base/bind.h" 6 #include "base/bind.h"
7 #include "base/command_line.h" 7 #include "base/command_line.h"
8 #include "base/logging.h" 8 #include "base/logging.h"
9 #include "base/message_loop/message_loop.h" 9 #include "base/message_loop/message_loop.h"
10 #include "mojo/shell/child_process.h" 10 #include "mojo/shell/child_process.h"
11 #include "mojo/shell/context.h" 11 #include "mojo/shell/context.h"
12 #include "mojo/shell/init.h" 12 #include "mojo/shell/init.h"
13 #include "mojo/shell/run.h" 13 #include "mojo/shell/run.h"
14 #include "mojo/shell/switches.h" 14 #include "mojo/shell/switches.h"
15 #include "ui/gl/gl_surface.h" 15 #include "ui/gl/gl_surface.h"
16 16
17 int main(int argc, char** argv) { 17 int main(int argc, char** argv) {
18 base::AtExitManager at_exit; 18 base::AtExitManager at_exit;
19 base::CommandLine::Init(argc, argv); 19 base::CommandLine::Init(argc, argv);
20 mojo::shell::InitializeLogging(); 20 mojo::shell::InitializeLogging();
21 21
22 // TODO(vtl): Unify parent and child process cases to the extent possible. 22 // TODO(vtl): Unify parent and child process cases to the extent possible.
23 if (scoped_ptr<mojo::shell::ChildProcess> child_process = 23 if (scoped_ptr<mojo::shell::ChildProcess> child_process =
24 mojo::shell::ChildProcess::Create( 24 mojo::shell::ChildProcess::Create(
25 *base::CommandLine::ForCurrentProcess())) { 25 *base::CommandLine::ForCurrentProcess())) {
26 child_process->Main(); 26 child_process->Main();
27 } else { 27 } else {
28 gfx::GLSurface::InitializeOneOff(); 28 gfx::GLSurface::InitializeOneOff();
29 29
30 base::MessageLoop message_loop; 30 // We want the shell::Context to outlive the MessageLoop so that pipes are
31 // all gracefully closed / error-out before we try to shut the Context down.
31 mojo::shell::Context shell_context; 32 mojo::shell::Context shell_context;
33 {
34 base::MessageLoop message_loop;
35 shell_context.Init();
32 36
33 const base::CommandLine& command_line = 37 const base::CommandLine& command_line =
34 *base::CommandLine::ForCurrentProcess(); 38 *base::CommandLine::ForCurrentProcess();
35 if (command_line.HasSwitch(switches::kOrigin)) { 39 if (command_line.HasSwitch(switches::kOrigin)) {
36 shell_context.mojo_url_resolver()->SetBaseURL( 40 shell_context.mojo_url_resolver()->SetBaseURL(
37 GURL(command_line.GetSwitchValueASCII(switches::kOrigin))); 41 GURL(command_line.GetSwitchValueASCII(switches::kOrigin)));
42 }
43
44 std::vector<GURL> app_urls;
45 base::CommandLine::StringVector args = command_line.GetArgs();
46 for (base::CommandLine::StringVector::const_iterator it = args.begin();
47 it != args.end();
48 ++it)
49 app_urls.push_back(GURL(*it));
50
51 message_loop.PostTask(FROM_HERE,
52 base::Bind(mojo::shell::Run,
53 &shell_context,
54 app_urls));
55 message_loop.Run();
38 } 56 }
39
40 std::vector<GURL> app_urls;
41 base::CommandLine::StringVector args = command_line.GetArgs();
42 for (base::CommandLine::StringVector::const_iterator it = args.begin();
43 it != args.end();
44 ++it)
45 app_urls.push_back(GURL(*it));
46
47 message_loop.PostTask(FROM_HERE,
48 base::Bind(mojo::shell::Run,
49 &shell_context,
50 app_urls));
51
52 message_loop.Run();
53 } 57 }
54
55 return 0; 58 return 0;
56 } 59 }
OLDNEW
« no previous file with comments | « mojo/shell/context.cc ('k') | mojo/shell/dynamic_service_loader_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698