~ted/ubuntu-app-launch/api-sanity-checker

« back to all changes in this revision

Viewing changes to libubuntu-app-launch/application-info-desktop.h

  • Committer: Bileto Bot
  • Author(s): Rodney Dawes
  • Date: 2016-08-17 15:24:30 UTC
  • mfrom: (237.3.2 add-desktop-apis)
  • Revision ID: ci-train-bot@canonical.com-20160817152430-qcmc4igy9p9mydfi
Add desktop info fields needed for applications scope

Show diffs side-by-side

added added

removed removed

Lines of Context:
50
50
    {
51
51
        return _iconPath;
52
52
    }
 
53
    const Application::Info::DefaultDepartment& defaultDepartment() override
 
54
    {
 
55
        return _defaultDepartment;
 
56
    }
 
57
    const Application::Info::IconPath& screenshotPath() override
 
58
    {
 
59
        return _screenshotPath;
 
60
    }
 
61
    const Application::Info::Keywords& keywords() override
 
62
    {
 
63
        return _keywords;
 
64
    }
53
65
 
54
66
    Application::Info::Splash splash() override
55
67
    {
78
90
    Application::Info::Name _name;
79
91
    Application::Info::Description _description;
80
92
    Application::Info::IconPath _iconPath;
 
93
    Application::Info::DefaultDepartment _defaultDepartment;
 
94
    Application::Info::IconPath _screenshotPath;
 
95
    Application::Info::Keywords _keywords;
81
96
 
82
97
    Application::Info::Splash _splashInfo;
83
98
    Application::Info::Orientations _supportedOrientations;