| 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 2fd1e00c838cffb3b4b5c7c84a34aa6e23ff06ea..22efdf32f37caaf61152c4d4429a538fec40a62b 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;
|
| }
|
|
|