~canonical-platform-qa/ubuntu-system-settings-online-accounts/launch_fixture

« back to all changes in this revision

Viewing changes to src/request.h

  • Committer: CI bot
  • Author(s): Alberto Mardegan
  • Date: 2014-05-30 13:30:01 UTC
  • mfrom: (107.1.13 master)
  • Revision ID: ps-jenkins@lists.canonical.com-20140530133001-an9lfy1dc1pfkifd
Release development branch

Features landing with this branch:
- Updating the ACL when applications are enabled/disabled in System Settings
- Write profile information in the XML files installed by click hooks
- Run tests with Python 3 autopilot.
- Merge signon-ui into online-accounts-ui 

Show diffs side-by-side

added added

removed removed

Lines of Context:
41
41
                               QObject *parent = 0);
42
42
    ~Request();
43
43
 
 
44
    static Request *find(const QVariantMap &match);
 
45
 
44
46
    WId windowId() const;
45
47
    bool isInProgress() const;
46
48
    const QVariantMap &parameters() const;
47
49
    QString clientApparmorProfile() const;
 
50
    QWindow *window() const;
48
51
 
49
52
public Q_SLOTS:
50
53
    virtual void start();
58
61
                     const QDBusMessage &message,
59
62
                     const QVariantMap &parameters,
60
63
                     QObject *parent = 0);
61
 
    void setWindow(QWindow *window);
 
64
    virtual void setWindow(QWindow *window);
62
65
 
63
66
protected Q_SLOTS:
64
67
    void fail(const QString &name, const QString &message);
65
 
    void setCanceled();
 
68
    virtual void setCanceled();
66
69
    void setResult(const QVariantMap &result);
67
70
 
68
71
private: