| 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;
|
| }
|
|
|