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

Unified Diff: components/arc/intent_helper/link_handler_model_impl.cc

Issue 2133503002: arc: Revamp the ArcBridgeService interface (Closed) Base URL: https://chromium.googlesource.com/a/chromium/src.git@master
Patch Set: More rebasing Created 4 years, 5 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/intent_helper/link_handler_model_impl.cc
diff --git a/components/arc/intent_helper/link_handler_model_impl.cc b/components/arc/intent_helper/link_handler_model_impl.cc
index 70806f643017a4435ed759ebbbbcfa88769430a3..957790148b50dca1ab51215b90e2e755b371cd91 100644
--- a/components/arc/intent_helper/link_handler_model_impl.cc
+++ b/components/arc/intent_helper/link_handler_model_impl.cc
@@ -93,12 +93,12 @@ mojom::IntentHelperInstance* LinkHandlerModelImpl::GetIntentHelper() {
return nullptr;
}
mojom::IntentHelperInstance* intent_helper_instance =
- bridge_service->intent_helper_instance();
+ bridge_service->intent_helper()->instance();
if (!intent_helper_instance) {
DLOG(WARNING) << "ARC intent helper instance is not ready.";
return nullptr;
}
- if (bridge_service->intent_helper_version() < kMinInstanceVersion) {
+ if (bridge_service->intent_helper()->version() < kMinInstanceVersion) {
DLOG(WARNING) << "ARC intent helper instance is too old.";
return nullptr;
}
« no previous file with comments | « components/arc/intent_helper/arc_intent_helper_bridge.cc ('k') | components/arc/metrics/arc_metrics_service.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698