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

Side by Side Diff: services/ui/ime/test_ime_driver/test_ime_application.h

Issue 2230393002: IME for Mus: Make InputMethodMus use the IME Mojo API. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Update mash_browser_tests_manifest. Created 4 years, 3 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
OLDNEW
(Empty)
1 // Copyright 2016 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4
5 #ifndef SERVICES_UI_IME_TEST_IME_DRIVER_TEST_IME_APPLICATION_H_
6 #define SERVICES_UI_IME_TEST_IME_DRIVER_TEST_IME_APPLICATION_H_
7
8 #include "services/shell/public/cpp/service.h"
9
10 namespace ui {
11 namespace test {
12
13 class TestIMEApplication : public shell::Service {
14 public:
15 TestIMEApplication();
16 ~TestIMEApplication() override;
17
18 private:
19 // shell::Service:
20 bool OnConnect(const shell::Identity& remote_identity,
21 shell::InterfaceRegistry* registry) override;
22 void OnStart(const shell::Identity& identity) override;
23
24 DISALLOW_COPY_AND_ASSIGN(TestIMEApplication);
25 };
26
27 } // namespace test
28 } // namespace ui
29
30 #endif // SERVICES_UI_IME_TEST_IME_DRIVER_TEST_IME_APPLICATION_H_
OLDNEW
« no previous file with comments | « services/ui/ime/test_ime_driver/main.cc ('k') | services/ui/ime/test_ime_driver/test_ime_application.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698