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

Unified Diff: chrome/browser/chromeos/arc/arc_navigation_throttle.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: chrome/browser/chromeos/arc/arc_navigation_throttle.cc
diff --git a/chrome/browser/chromeos/arc/arc_navigation_throttle.cc b/chrome/browser/chromeos/arc/arc_navigation_throttle.cc
index 26551d54b8330ea0ce15c353b5a5fff8b9e6629f..98f2507b6efcc56b53a4f647e8db98db20ea4702 100644
--- a/chrome/browser/chromeos/arc/arc_navigation_throttle.cc
+++ b/chrome/browser/chromeos/arc/arc_navigation_throttle.cc
@@ -35,12 +35,12 @@ mojom::IntentHelperInstance* GetIntentHelper() {
return nullptr;
}
mojom::IntentHelperInstance* intent_helper_instance =
- bridge_service->intent_helper_instance();
+ bridge_service->intent_helper()->instance();
if (!intent_helper_instance) {
VLOG(1) << "ARC intent helper instance is not ready.";
return nullptr;
}
- if (bridge_service->intent_helper_version() < kMinInstanceVersion) {
+ if (bridge_service->intent_helper()->version() < kMinInstanceVersion) {
VLOG(1) << "ARC intent helper instance is too old.";
return nullptr;
}
« no previous file with comments | « chrome/browser/chromeos/arc/arc_downloads_watcher_service.cc ('k') | chrome/browser/chromeos/arc/arc_policy_bridge.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698