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

Unified Diff: services/ui/ime/ime_registrar_impl.h

Issue 2945283002: Unify IMEDriver and IMEServer. (Closed)
Patch Set: Addressed feedback. Created 3 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « services/ui/ime/ime_driver_bridge.cc ('k') | services/ui/ime/ime_registrar_impl.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: services/ui/ime/ime_registrar_impl.h
diff --git a/services/ui/ime/ime_registrar_impl.h b/services/ui/ime/ime_registrar_impl.h
index 5d667fc2c3fe12c3484db7deea98b8e1500155e4..8eb12c572c6594daace44e7490fe7dc71a77b269 100644
--- a/services/ui/ime/ime_registrar_impl.h
+++ b/services/ui/ime/ime_registrar_impl.h
@@ -6,14 +6,14 @@
#define SERVICES_UI_IME_IME_REGISTRAR_IMPL_H_
#include "mojo/public/cpp/bindings/binding_set.h"
-#include "services/ui/ime/ime_server_impl.h"
+#include "services/ui/ime/ime_driver_bridge.h"
#include "services/ui/public/interfaces/ime/ime.mojom.h"
namespace ui {
class IMERegistrarImpl : public mojom::IMERegistrar {
public:
- explicit IMERegistrarImpl(IMEServerImpl* ime_server);
+ explicit IMERegistrarImpl(IMEDriverBridge* ime_driver_bridge);
~IMERegistrarImpl() override;
void AddBinding(mojom::IMERegistrarRequest request);
@@ -23,7 +23,7 @@ class IMERegistrarImpl : public mojom::IMERegistrar {
void RegisterDriver(mojom::IMEDriverPtr driver) override;
mojo::BindingSet<mojom::IMERegistrar> bindings_;
- IMEServerImpl* ime_server_;
+ IMEDriverBridge* ime_driver_bridge_;
DISALLOW_COPY_AND_ASSIGN(IMERegistrarImpl);
};
« no previous file with comments | « services/ui/ime/ime_driver_bridge.cc ('k') | services/ui/ime/ime_registrar_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698