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

Unified Diff: components/arc/ime/arc_ime_ipc_host.h

Issue 1596663002: arc-bridge: Introduce the ArcService class (Closed) Base URL: https://chromium.googlesource.com/a/chromium/src.git@master
Patch Set: Addressed feedback Created 4 years, 11 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
Index: components/arc/ime/arc_ime_ipc_host.h
diff --git a/components/arc/ime/arc_ime_ipc_host.h b/components/arc/ime/arc_ime_ipc_host.h
index e050e84bd448620f1419aa371225139f20bc3ed5..1d38b57ee4de147b8ddadf62d01dda9f63724925 100644
--- a/components/arc/ime/arc_ime_ipc_host.h
+++ b/components/arc/ime/arc_ime_ipc_host.h
@@ -35,7 +35,7 @@ class ArcImeIpcHost : public ImeHost,
virtual void OnCursorRectChanged(const gfx::Rect& rect) = 0;
};
- ArcImeIpcHost(Delegate* delegate, ArcBridgeService* bridge_service);
+ ArcImeIpcHost(Delegate* delegate, ArcBridgeService* arc_bridge_service);
~ArcImeIpcHost() override;
// arc::ArcBridgeService::Observer:
@@ -51,9 +51,10 @@ class ArcImeIpcHost : public ImeHost,
void OnCursorRectChanged(arc::CursorRectPtr rect) override;
private:
+ ArcBridgeService* const arc_bridge_service_; // owned by ArcServiceManager.
+
mojo::Binding<ImeHost> binding_;
Delegate* const delegate_;
- ArcBridgeService* const bridge_service_;
DISALLOW_COPY_AND_ASSIGN(ArcImeIpcHost);
};

Powered by Google App Engine
This is Rietveld 408576698