~ci-train-bot/ubuntu-app-launch/ubuntu-app-launch-ubuntu-zesty-2264

« back to all changes in this revision

Viewing changes to libubuntu-app-launch/app-store-base.cpp

  • Committer: Ted Gould
  • Date: 2017-04-04 05:29:16 UTC
  • mfrom: (307.1.20 registry-cleanup)
  • mto: This revision was merged to the branch mainline in revision 314.
  • Revision ID: ted@gould.cx-20170404052916-sy1fq5qzfrau6o53
Merge registry cleanup changes

Show diffs side-by-side

added added

removed removed

Lines of Context:
29
29
namespace app_store
30
30
{
31
31
 
32
 
Base::Base(const Registry& registry)
 
32
Base::Base(const std::shared_ptr<Registry::Impl>& registry)
33
33
    : info_watcher::Base(registry)
34
34
{
35
35
}
38
38
{
39
39
}
40
40
 
41
 
std::list<std::shared_ptr<Base>> Base::allAppStores(const Registry& registry)
 
41
std::list<std::shared_ptr<Base>> Base::allAppStores(const std::shared_ptr<Registry::Impl>& registry)
42
42
{
43
43
    return {
44
44
        std::make_shared<Legacy>(registry) /* Legacy */