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

Unified Diff: components/arc/ime/arc_ime_bridge.cc

Issue 1596663002: arc-bridge: Introduce the ArcService class (Closed) Base URL: https://chromium.googlesource.com/a/chromium/src.git@master
Patch Set: Rebased + protected ArcService direct instantiation 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
« no previous file with comments | « components/arc/ime/arc_ime_bridge.h ('k') | components/arc/input/arc_input_bridge.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: components/arc/ime/arc_ime_bridge.cc
diff --git a/components/arc/ime/arc_ime_bridge.cc b/components/arc/ime/arc_ime_bridge.cc
index ad03084ca55ff6a222d5d1aad575047e601aa98a..e98fde33c589e617671739c0a78b6f24707a1473 100644
--- a/components/arc/ime/arc_ime_bridge.cc
+++ b/components/arc/ime/arc_ime_bridge.cc
@@ -31,8 +31,9 @@ bool IsArcWindow(const aura::Window* window) {
////////////////////////////////////////////////////////////////////////////////
// ArcImeBridge main implementation:
-ArcImeBridge::ArcImeBridge(ArcBridgeService* arc_bridge_service)
- : ipc_host_(new ArcImeIpcHostImpl(this, arc_bridge_service)),
+ArcImeBridge::ArcImeBridge(ArcBridgeService* bridge_service)
+ : ArcService(bridge_service),
+ ipc_host_(new ArcImeIpcHostImpl(this, bridge_service)),
ime_type_(ui::TEXT_INPUT_TYPE_NONE),
has_composition_text_(false) {
aura::Env* env = aura::Env::GetInstanceDontCreate();
« no previous file with comments | « components/arc/ime/arc_ime_bridge.h ('k') | components/arc/input/arc_input_bridge.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698