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

Side by Side Diff: chrome/browser/ui/views/ime_driver_mus.h

Issue 2557493002: IME for Mus: Use ui::InputMethodChromeOS to provide logic for ime driver. (Closed)
Patch Set: More cleanup. Created 4 years 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 CHROME_BROWSER_UI_VIEWS_IME_DRIVER_MUS_H_
6 #define CHROME_BROWSER_UI_VIEWS_IME_DRIVER_MUS_H_
7
8 #include <stdint.h>
9
10 #include <map>
11 #include <memory>
12
13 #include "mojo/public/cpp/bindings/binding.h"
14 #include "services/ui/public/interfaces/ime/ime.mojom.h"
15
16 class IMEDriver : public ui::mojom::IMEDriver {
17 public:
18 ~IMEDriver() override;
19
20 // Instantiate the IME driver and register it to the UI service.
21 static void Register();
22
23 private:
24 IMEDriver();
25
26 // ui::mojom::IMEDriver:
27 void StartSession(
28 int32_t session_id,
29 ui::mojom::TextInputClientPtr client,
30 ui::mojom::InputMethodRequest input_method_request) override;
31 void CancelSession(int32_t session_id) override;
32
33 std::map<int32_t, std::unique_ptr<mojo::Binding<ui::mojom::InputMethod>>>
34 input_method_bindings_;
35
36 DISALLOW_COPY_AND_ASSIGN(IMEDriver);
37 };
38
39 #endif // CHROME_BROWSER_UI_VIEWS_IME_DRIVER_MUS_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698