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

Side by Side Diff: services/shell/tests/lifecycle/lifecycle_exe.cc

Issue 2118083002: ShellClient -> Service (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@mus2
Patch Set: . Created 4 years, 5 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 | « services/shell/tests/lifecycle/app_client.cc ('k') | services/shell/tests/lifecycle/package.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 2015 The Chromium Authors. All rights reserved. 1 // Copyright 2015 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/command_line.h" 6 #include "base/command_line.h"
7 #include "base/macros.h" 7 #include "base/macros.h"
8 #include "services/shell/public/cpp/connection.h" 8 #include "services/shell/public/cpp/connection.h"
9 #include "services/shell/public/cpp/connector.h" 9 #include "services/shell/public/cpp/connector.h"
10 #include "services/shell/public/cpp/shell_client.h" 10 #include "services/shell/public/cpp/service.h"
11 #include "services/shell/runner/child/test_native_main.h" 11 #include "services/shell/runner/child/test_native_main.h"
12 #include "services/shell/runner/init.h" 12 #include "services/shell/runner/init.h"
13 #include "services/shell/tests/lifecycle/app_client.h" 13 #include "services/shell/tests/lifecycle/app_client.h"
14 14
15 int main(int argc, char** argv) { 15 int main(int argc, char** argv) {
16 base::AtExitManager at_exit; 16 base::AtExitManager at_exit;
17 base::CommandLine::Init(argc, argv); 17 base::CommandLine::Init(argc, argv);
18 18
19 shell::InitializeLogging(); 19 shell::InitializeLogging();
20 20
21 shell::test::AppClient client; 21 shell::test::AppClient client;
22 return shell::TestNativeMain(&client); 22 return shell::TestNativeMain(&client);
23 } 23 }
OLDNEW
« no previous file with comments | « services/shell/tests/lifecycle/app_client.cc ('k') | services/shell/tests/lifecycle/package.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698