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

Unified Diff: chrome/browser/chromeos/arc/arc_navigation_throttle.cc

Issue 2190483003: arc: Revamp the ArcBridgeService interface (Closed) Base URL: https://chromium.googlesource.com/a/chromium/src.git@2785
Patch Set: One less diff line 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 88cc7f6d151bc0c131332f9c0299f22ef37ca98f..9a9ca484061fd9df280cd40c22fa1e1be08f0135 100644
--- a/chrome/browser/chromeos/arc/arc_navigation_throttle.cc
+++ b/chrome/browser/chromeos/arc/arc_navigation_throttle.cc
@@ -37,12 +37,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