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

Side by Side Diff: services/device_info/device_info.cc

Issue 1388413005: Move //mojo/services/X/public/... to //mojo/services/X/... (part 1). (Closed) Base URL: https://github.com/domokit/mojo.git@master
Patch Set: Created 5 years, 2 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/device_info/BUILD.gn ('k') | services/files/BUILD.gn » ('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 <cstdlib> 5 #include <cstdlib>
6 6
7 #include "mojo/common/binding_set.h" 7 #include "mojo/common/binding_set.h"
8 #include "mojo/public/c/system/main.h" 8 #include "mojo/public/c/system/main.h"
9 #include "mojo/public/cpp/application/application_connection.h" 9 #include "mojo/public/cpp/application/application_connection.h"
10 #include "mojo/public/cpp/application/application_delegate.h" 10 #include "mojo/public/cpp/application/application_delegate.h"
11 #include "mojo/public/cpp/application/application_runner.h" 11 #include "mojo/public/cpp/application/application_runner.h"
12 #include "mojo/public/cpp/application/interface_factory.h" 12 #include "mojo/public/cpp/application/interface_factory.h"
13 #include "mojo/services/device_info/public/interfaces/device_info.mojom.h" 13 #include "mojo/services/device_info/interfaces/device_info.mojom.h"
14 14
15 namespace mojo { 15 namespace mojo {
16 namespace services { 16 namespace services {
17 namespace device_info { 17 namespace device_info {
18 18
19 // This is a native Mojo application which implements |DeviceInfo| interface for 19 // This is a native Mojo application which implements |DeviceInfo| interface for
20 // Linux. 20 // Linux.
21 class DeviceInfo : public mojo::ApplicationDelegate, 21 class DeviceInfo : public mojo::ApplicationDelegate,
22 public mojo::DeviceInfo, 22 public mojo::DeviceInfo,
23 public mojo::InterfaceFactory<mojo::DeviceInfo> { 23 public mojo::InterfaceFactory<mojo::DeviceInfo> {
(...skipping 23 matching lines...) Expand all
47 }; 47 };
48 48
49 } // namespace device_info 49 } // namespace device_info
50 } // namespace services 50 } // namespace services
51 } // namespace mojo 51 } // namespace mojo
52 52
53 MojoResult MojoMain(MojoHandle application_request) { 53 MojoResult MojoMain(MojoHandle application_request) {
54 mojo::ApplicationRunner runner(new mojo::services::device_info::DeviceInfo()); 54 mojo::ApplicationRunner runner(new mojo::services::device_info::DeviceInfo());
55 return runner.Run(application_request); 55 return runner.Run(application_request);
56 } 56 }
OLDNEW
« no previous file with comments | « services/device_info/BUILD.gn ('k') | services/files/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698