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

Side by Side Diff: services/keyboard/linux/main.cc

Issue 2011383002: Get rid of {Run,Terminate}MainApplication(), and more ApplicationDelegate conversion. (Closed) Base URL: https://github.com/domokit/mojo.git@master
Patch Set: rebased Created 4 years, 6 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/js/content_handler_main.cc ('k') | services/log/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 "base/macros.h" 5 #include "base/macros.h"
6 #include "mojo/environment/scoped_chromium_init.h"
6 #include "mojo/public/c/system/main.h" 7 #include "mojo/public/c/system/main.h"
7 #include "mojo/public/cpp/application/application_impl_base.h" 8 #include "mojo/public/cpp/application/application_impl_base.h"
8 #include "mojo/public/cpp/application/run_application.h" 9 #include "mojo/public/cpp/application/run_application.h"
9 #include "mojo/public/cpp/application/service_provider_impl.h" 10 #include "mojo/public/cpp/application/service_provider_impl.h"
10 #include "mojo/services/native_viewport/interfaces/native_viewport_event_dispatc her.mojom.h" 11 #include "mojo/services/native_viewport/interfaces/native_viewport_event_dispatc her.mojom.h"
11 #include "services/keyboard/linux/keyboard_service_impl.h" 12 #include "services/keyboard/linux/keyboard_service_impl.h"
12 13
13 namespace keyboard { 14 namespace keyboard {
14 15
15 class KeyboardServiceFactoryImpl : public keyboard::KeyboardServiceFactory { 16 class KeyboardServiceFactoryImpl : public keyboard::KeyboardServiceFactory {
(...skipping 33 matching lines...) Expand 10 before | Expand all | Expand 10 after
49 return true; 50 return true;
50 } 51 }
51 52
52 private: 53 private:
53 DISALLOW_COPY_AND_ASSIGN(KeyboardServiceApp); 54 DISALLOW_COPY_AND_ASSIGN(KeyboardServiceApp);
54 }; 55 };
55 56
56 } // namespace keyboard 57 } // namespace keyboard
57 58
58 MojoResult MojoMain(MojoHandle application_request) { 59 MojoResult MojoMain(MojoHandle application_request) {
60 mojo::ScopedChromiumInit init;
59 keyboard::KeyboardServiceApp keyboard_service_app; 61 keyboard::KeyboardServiceApp keyboard_service_app;
60 return mojo::RunMainApplication(application_request, &keyboard_service_app); 62 return mojo::RunApplication(application_request, &keyboard_service_app);
61 } 63 }
OLDNEW
« no previous file with comments | « services/js/content_handler_main.cc ('k') | services/log/main.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698