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

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

Issue 1977023003: ApplicationConnection devolution, part 4 (the end). (Closed) Base URL: https://github.com/domokit/mojo.git@work790_app_conn_devo_3.1
Patch Set: Created 4 years, 7 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/clipboard/main.cc ('k') | services/files/main.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 <cstdlib> 5 #include <cstdlib>
6 #include <memory> 6 #include <memory>
7 7
8 #include "mojo/common/binding_set.h" 8 #include "mojo/common/binding_set.h"
9 #include "mojo/public/c/system/main.h" 9 #include "mojo/public/c/system/main.h"
10 #include "mojo/public/cpp/application/application_connection.h"
11 #include "mojo/public/cpp/application/application_delegate.h" 10 #include "mojo/public/cpp/application/application_delegate.h"
12 #include "mojo/public/cpp/application/application_runner.h" 11 #include "mojo/public/cpp/application/application_runner.h"
12 #include "mojo/public/cpp/application/service_provider_impl.h"
13 #include "mojo/services/device_info/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 ApplicationDelegate, public mojo::DeviceInfo { 21 class DeviceInfo : public ApplicationDelegate, public mojo::DeviceInfo {
22 public: 22 public:
(...skipping 22 matching lines...) Expand all
45 } // namespace device_info 45 } // namespace device_info
46 } // namespace services 46 } // namespace services
47 } // namespace mojo 47 } // namespace mojo
48 48
49 MojoResult MojoMain(MojoHandle application_request) { 49 MojoResult MojoMain(MojoHandle application_request) {
50 mojo::ApplicationRunner runner( 50 mojo::ApplicationRunner runner(
51 std::unique_ptr<mojo::services::device_info::DeviceInfo>( 51 std::unique_ptr<mojo::services::device_info::DeviceInfo>(
52 new mojo::services::device_info::DeviceInfo())); 52 new mojo::services::device_info::DeviceInfo()));
53 return runner.Run(application_request); 53 return runner.Run(application_request);
54 } 54 }
OLDNEW
« no previous file with comments | « services/clipboard/main.cc ('k') | services/files/main.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698