| Index: components/arc/arc_service_manager.cc
|
| diff --git a/components/arc/arc_service_manager.cc b/components/arc/arc_service_manager.cc
|
| index 6a7bcfae5a60231693c597688c4dce4afa4d10e9..e07cb955cb15b4f47a685a5d17cbaae369807d81 100644
|
| --- a/components/arc/arc_service_manager.cc
|
| +++ b/components/arc/arc_service_manager.cc
|
| @@ -33,7 +33,7 @@ class ArcServiceManager::IntentHelperObserverImpl
|
| ~IntentHelperObserverImpl() override = default;
|
|
|
| private:
|
| - void OnAppsUpdated() override;
|
| + void OnIntentFiltersUpdated() override;
|
| ArcServiceManager* const manager_;
|
|
|
| DISALLOW_COPY_AND_ASSIGN(IntentHelperObserverImpl);
|
| @@ -43,10 +43,10 @@ ArcServiceManager::IntentHelperObserverImpl::IntentHelperObserverImpl(
|
| ArcServiceManager* manager)
|
| : manager_(manager) {}
|
|
|
| -void ArcServiceManager::IntentHelperObserverImpl::OnAppsUpdated() {
|
| +void ArcServiceManager::IntentHelperObserverImpl::OnIntentFiltersUpdated() {
|
| DCHECK(manager_->thread_checker_.CalledOnValidThread());
|
| for (auto& observer : manager_->observer_list_)
|
| - observer.OnAppsUpdated();
|
| + observer.OnIntentFiltersUpdated();
|
| }
|
|
|
| ArcServiceManager::ArcServiceManager(
|
|
|