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

Side by Side Diff: ui/aura/mus/input_method_mus.h

Issue 2539453002: IME for Mus: Add ui.mojom.CompositionText and its struct traits. (Closed)
Patch Set: 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
1 // Copyright (c) 2015 The Chromium Authors. All rights reserved. 1 // Copyright (c) 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 #ifndef UI_AURA_MUS_INPUT_METHOD_MUS_H_ 5 #ifndef UI_AURA_MUS_INPUT_METHOD_MUS_H_
6 #define UI_AURA_MUS_INPUT_METHOD_MUS_H_ 6 #define UI_AURA_MUS_INPUT_METHOD_MUS_H_
7 7
8 #include "base/macros.h" 8 #include "base/macros.h"
9 #include "mojo/public/cpp/bindings/strong_binding.h" 9 #include "mojo/public/cpp/bindings/strong_binding.h"
10 #include "services/service_manager/public/cpp/connector.h" 10 #include "services/service_manager/public/cpp/connector.h"
11 #include "services/ui/public/interfaces/ime.mojom.h" 11 #include "services/ui/public/interfaces/ime/ime.mojom.h"
12 #include "ui/aura/aura_export.h" 12 #include "ui/aura/aura_export.h"
13 #include "ui/base/ime/input_method_base.h" 13 #include "ui/base/ime/input_method_base.h"
14 14
15 namespace ui { 15 namespace ui {
16 namespace mojom { 16 namespace mojom {
17 enum class EventResult; 17 enum class EventResult;
18 } 18 }
19 } 19 }
20 20
21 namespace aura { 21 namespace aura {
(...skipping 45 matching lines...) Expand 10 before | Expand all | Expand 10 after
67 ui::mojom::IMEServerPtr ime_server_; 67 ui::mojom::IMEServerPtr ime_server_;
68 ui::mojom::InputMethodPtr input_method_; 68 ui::mojom::InputMethodPtr input_method_;
69 std::unique_ptr<TextInputClientImpl> text_input_client_; 69 std::unique_ptr<TextInputClientImpl> text_input_client_;
70 70
71 DISALLOW_COPY_AND_ASSIGN(InputMethodMus); 71 DISALLOW_COPY_AND_ASSIGN(InputMethodMus);
72 }; 72 };
73 73
74 } // namespace aura 74 } // namespace aura
75 75
76 #endif // UI_AURA_MUS_INPUT_METHOD_MUS_H_ 76 #endif // UI_AURA_MUS_INPUT_METHOD_MUS_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698