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

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: Moved race avoidance boilerplate to ArcBridgeService 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..02cfbba54e22f7f821ca6b7168601b591900eadb 100644
--- a/components/arc/ime/arc_ime_ipc_host.h
+++ b/components/arc/ime/arc_ime_ipc_host.h
@@ -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