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

Unified Diff: components/arc/arc_service_manager.cc

Issue 2579083002: Rename OnAppsUpdated to OnIntentFiltersUpdated (Closed)
Patch Set: Created 4 years 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: 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(

Powered by Google App Engine
This is Rietveld 408576698