~ubuntu-branches/ubuntu/saucy/ubuntu-download-manager/saucy-proposed

« back to all changes in this revision

Viewing changes to ubuntu-download-manager-tests/fake_download_manager.cpp

  • Committer: Package Import Robot
  • Author(s): Ubuntu daily release, Manuel de la Pena, Ubuntu daily release
  • Date: 2013-09-24 22:03:24 UTC
  • mfrom: (1.1.19)
  • Revision ID: package-import@ubuntu.com-20130924220324-uek08yjka6lg6l0c
Tags: 0.2+13.10.20130924.2-0ubuntu1
[ Manuel de la Pena ]
* Ensure that when there is a network error the state of the
  GroupDownload is correctly set. (LP: #1227850, #1227907, #1218031)
* Provide system dbus API to be used by apps such as the image
  updates. (LP: #1211486)
* Provide new arg and new method to simplify tests. (LP: #1228233)
* Ensure that all downloads are canceled and that the files are
  correctly removed. (LP: #1229413)

[ Ubuntu daily release ]
* Automatic snapshot from revision 135

Show diffs side-by-side

added added

removed removed

Lines of Context:
19
19
#include "./fake_download_manager.h"
20
20
 
21
21
FakeDownloadManager::FakeDownloadManager(
 
22
                                    QSharedPointer<Application> app,
22
23
                                    QSharedPointer<DBusConnection> connection,
23
24
                                    QObject *parent)
24
 
    : DownloadManager(connection, parent),
 
25
    : DownloadManager(app, connection, parent),
25
26
      Fake() {
26
27
}
27
28