~ubuntu-branches/ubuntu/trusty/content-hub/trusty-proposed

« back to all changes in this revision

Viewing changes to src/com/ubuntu/content/type.cpp

  • Committer: Package Import Robot
  • Author(s): Ubuntu daily release, Ken VanDine
  • Date: 2014-03-06 16:50:24 UTC
  • mfrom: (1.1.17)
  • Revision ID: package-import@ubuntu.com-20140306165024-15mf374m2iar1syi
Tags: 0.0+14.04.20140306-0ubuntu1
[ Ken VanDine ]
* Added Type::Known::contacts. Note: there is no associated default
  store for contacts under any scope. Data for contacts doesn't
  persist.
* Changed defaults to a triplet used to build the appid. Bumped build
  depends for libupstart-app-launch2-dev needed for converting the
  triplet to an appid.

Show diffs side-by-side

added added

removed removed

Lines of Context:
86
86
    static cuc::Type t("music", nullptr);
87
87
    return t;
88
88
}
 
89
 
 
90
const cuc::Type& cuc::Type::Known::contacts()
 
91
{
 
92
    static cuc::Type t("contacts", nullptr);
 
93
    return t;
 
94
}