Lines Matching refs:CloudDelegateImpl
40 class CloudDelegateImpl : public CloudDelegate { class
42 CloudDelegateImpl(provider::TaskRunner* task_runner, in CloudDelegateImpl() function in weave::privet::__anonaa5c2b600111::CloudDelegateImpl
49 &CloudDelegateImpl::OnConfigChanged, weak_factory_.GetWeakPtr()));
51 &CloudDelegateImpl::OnRegistrationChanged, weak_factory_.GetWeakPtr()));
54 base::Bind(&CloudDelegateImpl::NotifyOnTraitDefsChanged,
57 &CloudDelegateImpl::OnCommandAdded, weak_factory_.GetWeakPtr()));
59 &CloudDelegateImpl::OnCommandRemoved, weak_factory_.GetWeakPtr()));
61 &CloudDelegateImpl::NotifyOnStateChanged, weak_factory_.GetWeakPtr()));
63 base::Bind(&CloudDelegateImpl::NotifyOnComponentTreeChanged,
67 ~CloudDelegateImpl() override = default;
130 FROM_HERE, base::Bind(&CloudDelegateImpl::CallManagerRegisterDevice, in Setup()
277 base::Bind(&CloudDelegateImpl::RegisterDeviceDone, in CallManagerRegisterDevice()
286 FROM_HERE, base::Bind(&CloudDelegateImpl::CallManagerRegisterDevice, in RegisterDeviceDone()
354 base::WeakPtrFactory<CloudDelegateImpl> setup_weak_factory_{this};
356 base::WeakPtrFactory<CloudDelegateImpl> weak_factory_{this};
370 return std::unique_ptr<CloudDelegateImpl>{ in CreateDefault()
371 new CloudDelegateImpl{task_runner, device, component_manager}}; in CreateDefault()