Merge lp:~mandel/ubuntu-download-manager/group-files into lp:ubuntu-download-manager

Proposed by Manuel de la Peña
Status: Merged
Approved by: Manuel de la Peña
Approved revision: 151
Merged at revision: 155
Proposed branch: lp:~mandel/ubuntu-download-manager/group-files
Merge into: lp:ubuntu-download-manager
Prerequisite: lp:~mandel/ubuntu-download-manager/string-id
Diff against target: 682 lines (+98/-98)
39 files modified
libubuntudownloadmanager/download.cpp (+1/-1)
libubuntudownloadmanager/download.h (+3/-3)
libubuntudownloadmanager/download_daemon.cpp (+2/-2)
libubuntudownloadmanager/download_daemon.h (+5/-5)
libubuntudownloadmanager/download_factory.cpp (+1/-1)
libubuntudownloadmanager/download_factory.h (+5/-5)
libubuntudownloadmanager/download_manager.cpp (+3/-3)
libubuntudownloadmanager/download_manager.h (+7/-7)
libubuntudownloadmanager/download_queue.cpp (+1/-1)
libubuntudownloadmanager/download_queue.h (+3/-3)
libubuntudownloadmanager/downloads_db.cpp (+1/-1)
libubuntudownloadmanager/downloads_db.h (+2/-2)
libubuntudownloadmanager/group_download.cpp (+2/-2)
libubuntudownloadmanager/group_download.h (+1/-1)
libubuntudownloadmanager/libubuntudownloadmanager.pro (+26/-26)
libubuntudownloadmanager/single_download.cpp (+2/-2)
ubuntu-download-manager-tests/fake_apparmor.cpp (+1/-1)
ubuntu-download-manager-tests/fake_apparmor.h (+2/-2)
ubuntu-download-manager-tests/fake_application.h (+2/-2)
ubuntu-download-manager-tests/fake_dbus_connection.h (+2/-2)
ubuntu-download-manager-tests/fake_download.h (+1/-1)
ubuntu-download-manager-tests/fake_download_manager.h (+1/-1)
ubuntu-download-manager-tests/fake_download_queue.h (+2/-2)
ubuntu-download-manager-tests/fake_file_manager.h (+2/-2)
ubuntu-download-manager-tests/fake_network_reply.h (+2/-2)
ubuntu-download-manager-tests/fake_process.h (+2/-2)
ubuntu-download-manager-tests/fake_process_factory.h (+1/-1)
ubuntu-download-manager-tests/fake_request_factory.h (+1/-1)
ubuntu-download-manager-tests/fake_system_network_info.h (+1/-1)
ubuntu-download-manager-tests/fake_timer.h (+2/-2)
ubuntu-download-manager-tests/fake_uuid_factory.h (+1/-1)
ubuntu-download-manager-tests/test_download.cpp (+1/-1)
ubuntu-download-manager-tests/test_download_factory.cpp (+1/-1)
ubuntu-download-manager-tests/test_download_manager.cpp (+1/-1)
ubuntu-download-manager-tests/test_download_queue.cpp (+1/-1)
ubuntu-download-manager-tests/test_downloads_db.cpp (+1/-1)
ubuntu-download-manager-tests/test_group_download.cpp (+1/-1)
ubuntu-download-manager-tests/test_group_download.h (+1/-1)
ubuntu-download-manager-tests/test_network_reply.h (+3/-3)
To merge this branch: bzr merge lp:~mandel/ubuntu-download-manager/group-files
Reviewer Review Type Date Requested Status
Mike McCracken (community) Approve
PS Jenkins bot continuous-integration Approve
Diego Sarmentero (community) Approve
Review via email: mp+192487@code.launchpad.net

Commit message

Group all system related files under the same dir.

Description of the change

The project is getting very large and is hard to keep track of all the files. I'm starting to group them by function, in this branch all files related to system functions are grouped under the same directory.

To post a comment you must log in.
Revision history for this message
Diego Sarmentero (diegosarmentero) wrote :

+1

review: Approve
Revision history for this message
PS Jenkins bot (ps-jenkins) wrote :
review: Approve (continuous-integration)
Revision history for this message
Mike McCracken (mikemc) :
review: Approve

Preview Diff

[H/L] Next/Prev Comment, [J/K] Next/Prev File, [N/P] Next/Prev Hunk
1=== modified file 'libubuntudownloadmanager/download.cpp'
2--- libubuntudownloadmanager/download.cpp 2013-10-24 11:45:03 +0000
3+++ libubuntudownloadmanager/download.cpp 2013-10-24 11:45:03 +0000
4@@ -18,7 +18,7 @@
5
6 #include <QDebug>
7 #include <QStringList>
8-#include "logger.h"
9+#include "system/logger.h"
10 #include "download.h"
11
12 /**
13
14=== modified file 'libubuntudownloadmanager/download.h'
15--- libubuntudownloadmanager/download.h 2013-10-24 11:45:03 +0000
16+++ libubuntudownloadmanager/download.h 2013-10-24 11:45:03 +0000
17@@ -24,9 +24,9 @@
18 #include <QProcess>
19 #include <QSharedPointer>
20 #include "app-downloader-lib_global.h"
21-#include "process_factory.h"
22-#include "request_factory.h"
23-#include "system_network_info.h"
24+#include "system/process_factory.h"
25+#include "system/request_factory.h"
26+#include "system/system_network_info.h"
27
28 class DownloadPrivate;
29 class APPDOWNLOADERLIBSHARED_EXPORT Download : public QObject {
30
31=== modified file 'libubuntudownloadmanager/download_daemon.cpp'
32--- libubuntudownloadmanager/download_daemon.cpp 2013-10-17 15:06:29 +0000
33+++ libubuntudownloadmanager/download_daemon.cpp 2013-10-24 11:45:03 +0000
34@@ -20,8 +20,8 @@
35 #include <QDebug>
36 #include <QSharedPointer>
37 #include <QSslCertificate>
38-#include "application.h"
39-#include "logger.h"
40+#include "system/application.h"
41+#include "system/logger.h"
42 #include "download_manager.h"
43 #include "download_manager_adaptor.h"
44 #include "download_daemon.h"
45
46=== modified file 'libubuntudownloadmanager/download_daemon.h'
47--- libubuntudownloadmanager/download_daemon.h 2013-09-20 15:54:50 +0000
48+++ libubuntudownloadmanager/download_daemon.h 2013-10-24 11:45:03 +0000
49@@ -21,11 +21,11 @@
50
51 #include <QObject>
52 #include <QSharedPointer>
53-#include "./app-downloader-lib_global.h"
54-#include "./application.h"
55-#include "./dbus_connection.h"
56-#include "./download_manager.h"
57-#include "./timer.h"
58+#include "app-downloader-lib_global.h"
59+#include "system/application.h"
60+#include "system/dbus_connection.h"
61+#include "download_manager.h"
62+#include "system/timer.h"
63
64 class DownloadDaemonPrivate;
65 class APPDOWNLOADERLIBSHARED_EXPORT DownloadDaemon : public QObject {
66
67=== modified file 'libubuntudownloadmanager/download_factory.cpp'
68--- libubuntudownloadmanager/download_factory.cpp 2013-10-24 11:45:03 +0000
69+++ libubuntudownloadmanager/download_factory.cpp 2013-10-24 11:45:03 +0000
70@@ -21,7 +21,7 @@
71 #include "group_download.h"
72 #include "group_download_adaptor.h"
73 #include "single_download.h"
74-#include "logger.h"
75+#include "system/logger.h"
76 #include "download_factory.h"
77
78 #define OBJECT_PATH_KEY "objectpath"
79
80=== modified file 'libubuntudownloadmanager/download_factory.h'
81--- libubuntudownloadmanager/download_factory.h 2013-09-24 12:08:24 +0000
82+++ libubuntudownloadmanager/download_factory.h 2013-10-24 11:45:03 +0000
83@@ -21,11 +21,11 @@
84
85 #include <QObject>
86 #include <QSharedPointer>
87-#include "./apparmor.h"
88-#include "./metatypes.h"
89-#include "./system_network_info.h"
90-#include "./download.h"
91-#include "./uuid_factory.h"
92+#include "system/apparmor.h"
93+#include "metatypes.h"
94+#include "system/system_network_info.h"
95+#include "download.h"
96+#include "system/uuid_factory.h"
97
98 class DownloadFactoryPrivate;
99 class DownloadFactory : public QObject {
100
101=== modified file 'libubuntudownloadmanager/download_manager.cpp'
102--- libubuntudownloadmanager/download_manager.cpp 2013-10-17 15:06:29 +0000
103+++ libubuntudownloadmanager/download_manager.cpp 2013-10-24 11:45:03 +0000
104@@ -18,10 +18,10 @@
105
106 #include <functional>
107 #include <QRegExp>
108-#include "apparmor.h"
109+#include "system/apparmor.h"
110 #include "download_queue.h"
111-#include "request_factory.h"
112-#include "system_network_info.h"
113+#include "system/request_factory.h"
114+#include "system/system_network_info.h"
115 #include "download_manager.h"
116
117 /**
118
119=== modified file 'libubuntudownloadmanager/download_manager.h'
120--- libubuntudownloadmanager/download_manager.h 2013-09-20 15:30:24 +0000
121+++ libubuntudownloadmanager/download_manager.h 2013-10-24 11:45:03 +0000
122@@ -25,13 +25,13 @@
123 #include <QtDBus/QDBusContext>
124 #include <QSharedPointer>
125 #include <QSslCertificate>
126-#include "./application.h"
127-#include "./dbus_connection.h"
128-#include "./download.h"
129-#include "./download_queue.h"
130-#include "./download_factory.h"
131-#include "./metatypes.h"
132-#include "./system_network_info.h"
133+#include "system/application.h"
134+#include "system/dbus_connection.h"
135+#include "download.h"
136+#include "download_queue.h"
137+#include "download_factory.h"
138+#include "metatypes.h"
139+#include "system/system_network_info.h"
140
141 class DownloadManagerPrivate;
142 class DownloadManager : public QObject, public QDBusContext {
143
144=== modified file 'libubuntudownloadmanager/download_queue.cpp'
145--- libubuntudownloadmanager/download_queue.cpp 2013-10-17 15:06:29 +0000
146+++ libubuntudownloadmanager/download_queue.cpp 2013-10-24 11:45:03 +0000
147@@ -18,7 +18,7 @@
148
149 #include <QDebug>
150 #include <QSignalMapper>
151-#include "logger.h"
152+#include "system/logger.h"
153 #include "download_queue.h"
154
155 /*
156
157=== modified file 'libubuntudownloadmanager/download_queue.h'
158--- libubuntudownloadmanager/download_queue.h 2013-10-09 16:37:23 +0000
159+++ libubuntudownloadmanager/download_queue.h 2013-10-24 11:45:03 +0000
160@@ -22,9 +22,9 @@
161 #include <QList>
162 #include <QPair>
163 #include <QSharedPointer>
164-#include "./download.h"
165-#include "./download_adaptor.h"
166-#include "./system_network_info.h"
167+#include "download.h"
168+#include "download_adaptor.h"
169+#include "system/system_network_info.h"
170
171 class DownloadQueuePrivate;
172 class DownloadQueue : public QObject {
173
174=== modified file 'libubuntudownloadmanager/downloads_db.cpp'
175--- libubuntudownloadmanager/downloads_db.cpp 2013-10-24 11:45:03 +0000
176+++ libubuntudownloadmanager/downloads_db.cpp 2013-10-24 11:45:03 +0000
177@@ -26,7 +26,7 @@
178 #include <QSqlQuery>
179 #include <QSqlError>
180 #include "hash_algorithm.h"
181-#include "logger.h"
182+#include "system/logger.h"
183 #include "downloads_db.h"
184
185 #define SINGLE_DOWNLOAD_TABLE "CREATE TABLE SingleDownload("\
186
187=== modified file 'libubuntudownloadmanager/downloads_db.h'
188--- libubuntudownloadmanager/downloads_db.h 2013-09-04 07:31:03 +0000
189+++ libubuntudownloadmanager/downloads_db.h 2013-10-24 11:45:03 +0000
190@@ -21,8 +21,8 @@
191
192 #include <QSqlDatabase>
193 #include <QObject>
194-#include "./single_download.h"
195-#include "./file_manager.h"
196+#include "single_download.h"
197+#include "system/file_manager.h"
198
199 class DownloadsDbPrivate;
200 class DownloadsDb : public QObject {
201
202=== modified file 'libubuntudownloadmanager/group_download.cpp'
203--- libubuntudownloadmanager/group_download.cpp 2013-10-24 11:45:03 +0000
204+++ libubuntudownloadmanager/group_download.cpp 2013-10-24 11:45:03 +0000
205@@ -19,9 +19,9 @@
206 #include <QDebug>
207 #include "download_adaptor.h"
208 #include "hash_algorithm.h"
209-#include "logger.h"
210+#include "system/logger.h"
211 #include "single_download.h"
212-#include "uuid_factory.h"
213+#include "system/uuid_factory.h"
214 #include "group_download.h"
215
216 /*
217
218=== modified file 'libubuntudownloadmanager/group_download.h'
219--- libubuntudownloadmanager/group_download.h 2013-10-24 11:45:03 +0000
220+++ libubuntudownloadmanager/group_download.h 2013-10-24 11:45:03 +0000
221@@ -25,7 +25,7 @@
222 #include <QSharedPointer>
223 #include "download.h"
224 #include "download_factory.h"
225-#include "file_manager.h"
226+#include "system/file_manager.h"
227 #include "group_download_struct.h"
228
229 class GroupDownloadPrivate;
230
231=== modified file 'libubuntudownloadmanager/libubuntudownloadmanager.pro'
232--- libubuntudownloadmanager/libubuntudownloadmanager.pro 2013-10-24 11:45:03 +0000
233+++ libubuntudownloadmanager/libubuntudownloadmanager.pro 2013-10-24 11:45:03 +0000
234@@ -10,9 +10,6 @@
235 DEFINES += DEBUG
236
237 SOURCES += \
238- application.cpp \
239- apparmor.cpp \
240- dbus_connection.cpp \
241 dbus_proxy.cpp \
242 download.cpp \
243 download_adaptor.cpp \
244@@ -23,27 +20,27 @@
245 download_manager_adaptor.cpp \
246 download_queue.cpp \
247 download_struct.cpp \
248- file_manager.cpp \
249 group_download.cpp \
250 group_download_struct.cpp \
251 group_download_adaptor.cpp \
252 hash_algorithm.cpp \
253- logger.cpp \
254- network_reply.cpp \
255- process.cpp \
256- process_factory.cpp \
257- request_factory.cpp \
258 single_download.cpp \
259- system_network_info.cpp \
260- timer.cpp \
261- uuid_factory.cpp \
262- uuid_utils.cpp
263+ system/uuid_utils.cpp \
264+ system/uuid_factory.cpp \
265+ system/timer.cpp \
266+ system/system_network_info.cpp \
267+ system/request_factory.cpp \
268+ system/process_factory.cpp \
269+ system/process.cpp \
270+ system/logger.cpp \
271+ system/file_manager.cpp \
272+ system/dbus_connection.cpp \
273+ system/application.cpp \
274+ system/apparmor.cpp \
275+ system/network_reply.cpp
276
277 HEADERS +=\
278 app-downloader-lib_global.h \
279- apparmor.h \
280- application.h \
281- dbus_connection.h \
282 dbus_proxy.h \
283 download.h \
284 download_adaptor.h \
285@@ -54,22 +51,25 @@
286 download_manager_adaptor.h \
287 download_queue.h \
288 download_struct.h \
289- file_manager.h \
290 group_download.h \
291 group_download_struct.h \
292 group_download_adaptor.h \
293 hash_algorithm.h \
294- logger.h \
295 metatypes.h \
296- network_reply.h \
297- process.h \
298- process_factory.h \
299- request_factory.h \
300 single_download.h \
301- system_network_info.h \
302- timer.h \
303- uuid_factory.h \
304- uuid_utils.h
305+ system/uuid_utils.h \
306+ system/uuid_factory.h \
307+ system/timer.h \
308+ system/system_network_info.h \
309+ system/request_factory.h \
310+ system/process_factory.h \
311+ system/process.h \
312+ system/logger.h \
313+ system/file_manager.h \
314+ system/dbus_connection.h \
315+ system/application.h \
316+ system/apparmor.h \
317+ system/network_reply.h
318
319 OTHER_FILES += \
320 generate_adaptors.sh \
321
322=== modified file 'libubuntudownloadmanager/single_download.cpp'
323--- libubuntudownloadmanager/single_download.cpp 2013-10-24 11:45:03 +0000
324+++ libubuntudownloadmanager/single_download.cpp 2013-10-24 11:45:03 +0000
325@@ -25,9 +25,9 @@
326 #include <QFileInfo>
327 #include <QSslError>
328 #include "hash_algorithm.h"
329-#include "logger.h"
330+#include "system/logger.h"
331 #include "single_download.h"
332-#include "network_reply.h"
333+#include "system/network_reply.h"
334
335
336 #define DATA_FILE_NAME "data.download"
337
338=== added directory 'libubuntudownloadmanager/system'
339=== renamed file 'libubuntudownloadmanager/apparmor.cpp' => 'libubuntudownloadmanager/system/apparmor.cpp'
340=== renamed file 'libubuntudownloadmanager/apparmor.h' => 'libubuntudownloadmanager/system/apparmor.h'
341=== renamed file 'libubuntudownloadmanager/application.cpp' => 'libubuntudownloadmanager/system/application.cpp'
342=== renamed file 'libubuntudownloadmanager/application.h' => 'libubuntudownloadmanager/system/application.h'
343=== renamed file 'libubuntudownloadmanager/dbus_connection.cpp' => 'libubuntudownloadmanager/system/dbus_connection.cpp'
344=== renamed file 'libubuntudownloadmanager/dbus_connection.h' => 'libubuntudownloadmanager/system/dbus_connection.h'
345=== renamed file 'libubuntudownloadmanager/file_manager.cpp' => 'libubuntudownloadmanager/system/file_manager.cpp'
346=== renamed file 'libubuntudownloadmanager/file_manager.h' => 'libubuntudownloadmanager/system/file_manager.h'
347=== renamed file 'libubuntudownloadmanager/logger.cpp' => 'libubuntudownloadmanager/system/logger.cpp'
348=== renamed file 'libubuntudownloadmanager/logger.h' => 'libubuntudownloadmanager/system/logger.h'
349=== renamed file 'libubuntudownloadmanager/network_reply.cpp' => 'libubuntudownloadmanager/system/network_reply.cpp'
350=== renamed file 'libubuntudownloadmanager/network_reply.h' => 'libubuntudownloadmanager/system/network_reply.h'
351=== renamed file 'libubuntudownloadmanager/process.cpp' => 'libubuntudownloadmanager/system/process.cpp'
352=== renamed file 'libubuntudownloadmanager/process.h' => 'libubuntudownloadmanager/system/process.h'
353=== renamed file 'libubuntudownloadmanager/process_factory.cpp' => 'libubuntudownloadmanager/system/process_factory.cpp'
354=== renamed file 'libubuntudownloadmanager/process_factory.h' => 'libubuntudownloadmanager/system/process_factory.h'
355=== renamed file 'libubuntudownloadmanager/request_factory.cpp' => 'libubuntudownloadmanager/system/request_factory.cpp'
356=== renamed file 'libubuntudownloadmanager/request_factory.h' => 'libubuntudownloadmanager/system/request_factory.h'
357=== renamed file 'libubuntudownloadmanager/system_network_info.cpp' => 'libubuntudownloadmanager/system/system_network_info.cpp'
358=== renamed file 'libubuntudownloadmanager/system_network_info.h' => 'libubuntudownloadmanager/system/system_network_info.h'
359=== renamed file 'libubuntudownloadmanager/timer.cpp' => 'libubuntudownloadmanager/system/timer.cpp'
360=== renamed file 'libubuntudownloadmanager/timer.h' => 'libubuntudownloadmanager/system/timer.h'
361=== renamed file 'libubuntudownloadmanager/uuid_factory.cpp' => 'libubuntudownloadmanager/system/uuid_factory.cpp'
362=== renamed file 'libubuntudownloadmanager/uuid_factory.h' => 'libubuntudownloadmanager/system/uuid_factory.h'
363=== renamed file 'libubuntudownloadmanager/uuid_utils.cpp' => 'libubuntudownloadmanager/system/uuid_utils.cpp'
364=== renamed file 'libubuntudownloadmanager/uuid_utils.h' => 'libubuntudownloadmanager/system/uuid_utils.h'
365=== modified file 'ubuntu-download-manager-tests/fake_apparmor.cpp'
366--- ubuntu-download-manager-tests/fake_apparmor.cpp 2013-10-24 11:45:03 +0000
367+++ ubuntu-download-manager-tests/fake_apparmor.cpp 2013-10-24 11:45:03 +0000
368@@ -16,7 +16,7 @@
369 * Boston, MA 02110-1301, USA.
370 */
371
372-#include <uuid_utils.h>
373+#include <system/uuid_utils.h>
374 #include "fake_apparmor.h"
375
376 FakeAppArmor::FakeAppArmor(QSharedPointer<UuidFactory> uuidFactory,
377
378=== modified file 'ubuntu-download-manager-tests/fake_apparmor.h'
379--- ubuntu-download-manager-tests/fake_apparmor.h 2013-10-24 11:45:03 +0000
380+++ ubuntu-download-manager-tests/fake_apparmor.h 2013-10-24 11:45:03 +0000
381@@ -21,8 +21,8 @@
382
383 #include <QObject>
384 #include <QSharedPointer>
385-#include <apparmor.h>
386-#include <uuid_factory.h>
387+#include <system/apparmor.h>
388+#include <system/uuid_factory.h>
389 #include "fake.h"
390
391 class FakeAppArmor : public AppArmor, public Fake {
392
393=== modified file 'ubuntu-download-manager-tests/fake_application.h'
394--- ubuntu-download-manager-tests/fake_application.h 2013-09-17 10:37:08 +0000
395+++ ubuntu-download-manager-tests/fake_application.h 2013-10-24 11:45:03 +0000
396@@ -20,8 +20,8 @@
397 #define FAKE_APPLICATION_H
398
399 #include <QObject>
400-#include <application.h>
401-#include "./fake.h"
402+#include <system/application.h>
403+#include "fake.h"
404
405 class FakeApplication : public Application, public Fake {
406 Q_OBJECT
407
408=== modified file 'ubuntu-download-manager-tests/fake_dbus_connection.h'
409--- ubuntu-download-manager-tests/fake_dbus_connection.h 2013-07-23 16:41:25 +0000
410+++ ubuntu-download-manager-tests/fake_dbus_connection.h 2013-10-24 11:45:03 +0000
411@@ -18,8 +18,8 @@
412
413 #ifndef FAKE_DBUS_CONNECTION_H
414 #define FAKE_DBUS_CONNECTION_H
415-#include <dbus_connection.h>
416-#include "./fake.h"
417+#include <system/dbus_connection.h>
418+#include "fake.h"
419
420 class RegisterOptionsWrapper : public QObject {
421 Q_OBJECT
422
423=== modified file 'ubuntu-download-manager-tests/fake_download.h'
424--- ubuntu-download-manager-tests/fake_download.h 2013-10-24 11:45:03 +0000
425+++ ubuntu-download-manager-tests/fake_download.h 2013-10-24 11:45:03 +0000
426@@ -20,7 +20,7 @@
427 #define FAKE_DOWNLOAD_H
428 #include <QSharedPointer>
429 #include <single_download.h>
430-#include <system_network_info.h>
431+#include <system/system_network_info.h>
432 #include <metatypes.h>
433 #include "fake.h"
434
435
436=== modified file 'ubuntu-download-manager-tests/fake_download_manager.h'
437--- ubuntu-download-manager-tests/fake_download_manager.h 2013-09-20 15:30:24 +0000
438+++ ubuntu-download-manager-tests/fake_download_manager.h 2013-10-24 11:45:03 +0000
439@@ -21,7 +21,7 @@
440
441 #include <QObject>
442 #include <download_manager.h>
443-#include "./fake.h"
444+#include "fake.h"
445
446
447 class FakeDownloadManager : public DownloadManager, public Fake {
448
449=== modified file 'ubuntu-download-manager-tests/fake_download_queue.h'
450--- ubuntu-download-manager-tests/fake_download_queue.h 2013-09-09 16:05:49 +0000
451+++ ubuntu-download-manager-tests/fake_download_queue.h 2013-10-24 11:45:03 +0000
452@@ -20,8 +20,8 @@
453 #define FAKE_DOWNLOAD_QUEUE_H
454 #include <QSharedPointer>
455 #include <download_queue.h>
456-#include <system_network_info.h>
457-#include "./fake.h"
458+#include <system/system_network_info.h>
459+#include "fake.h"
460
461 class FakeDownloadQueue : public DownloadQueue, public Fake {
462 Q_OBJECT
463
464=== modified file 'ubuntu-download-manager-tests/fake_file_manager.h'
465--- ubuntu-download-manager-tests/fake_file_manager.h 2013-08-28 14:03:51 +0000
466+++ ubuntu-download-manager-tests/fake_file_manager.h 2013-10-24 11:45:03 +0000
467@@ -20,8 +20,8 @@
468 #define FAKE_FILE_MANAGER_H
469
470 #include <QObject>
471-#include <file_manager.h>
472-#include "./fake.h"
473+#include <system/file_manager.h>
474+#include "fake.h"
475
476 class FakeFileManager : public FileManager, public Fake {
477 Q_OBJECT
478
479=== modified file 'ubuntu-download-manager-tests/fake_network_reply.h'
480--- ubuntu-download-manager-tests/fake_network_reply.h 2013-09-23 11:17:17 +0000
481+++ ubuntu-download-manager-tests/fake_network_reply.h 2013-10-24 11:45:03 +0000
482@@ -20,8 +20,8 @@
483 #define FAKE_NETWORK_REPLY_H
484
485 #include <QObject>
486-#include <network_reply.h>
487-#include "./fake.h"
488+#include <system/network_reply.h>
489+#include "fake.h"
490
491
492 class SslErrorsListWrapper : public QObject {
493
494=== modified file 'ubuntu-download-manager-tests/fake_process.h'
495--- ubuntu-download-manager-tests/fake_process.h 2013-07-26 10:19:18 +0000
496+++ ubuntu-download-manager-tests/fake_process.h 2013-10-24 11:45:03 +0000
497@@ -20,8 +20,8 @@
498 #define FAKE_PROCESS_H
499
500 #include <QObject>
501-#include <process.h>
502-#include "./fake.h"
503+#include <system/process.h>
504+#include "fake.h"
505
506 class OpenModeWrapper: public QObject {
507 Q_OBJECT
508
509=== modified file 'ubuntu-download-manager-tests/fake_process_factory.h'
510--- ubuntu-download-manager-tests/fake_process_factory.h 2013-07-23 17:50:35 +0000
511+++ ubuntu-download-manager-tests/fake_process_factory.h 2013-10-24 11:45:03 +0000
512@@ -20,7 +20,7 @@
513 #define FAKE_PROCESS_FACTORY_H
514
515 #include <QObject>
516-#include <process_factory.h>
517+#include <system/process_factory.h>
518 #include "./fake.h"
519
520 class FakeProcessFactory : public ProcessFactory, public Fake {
521
522=== modified file 'ubuntu-download-manager-tests/fake_request_factory.h'
523--- ubuntu-download-manager-tests/fake_request_factory.h 2013-09-17 10:37:08 +0000
524+++ ubuntu-download-manager-tests/fake_request_factory.h 2013-10-24 11:45:03 +0000
525@@ -23,7 +23,7 @@
526 #include <QNetworkRequest>
527 #include <QNetworkReply>
528 #include <QPair>
529-#include <request_factory.h>
530+#include <system/request_factory.h>
531 #include "./fake.h"
532
533 class RequestWrapper : public QObject {
534
535=== modified file 'ubuntu-download-manager-tests/fake_system_network_info.h'
536--- ubuntu-download-manager-tests/fake_system_network_info.h 2013-10-11 15:12:55 +0000
537+++ ubuntu-download-manager-tests/fake_system_network_info.h 2013-10-24 11:45:03 +0000
538@@ -20,7 +20,7 @@
539 #define FAKE_SYSTEM_NETWORK_INFO_H
540
541 #include <QObject>
542-#include <system_network_info.h>
543+#include <system/system_network_info.h>
544 #include "fake.h"
545
546 class NetworkModeWrapper : public QObject {
547
548=== modified file 'ubuntu-download-manager-tests/fake_timer.h'
549--- ubuntu-download-manager-tests/fake_timer.h 2013-08-22 20:49:57 +0000
550+++ ubuntu-download-manager-tests/fake_timer.h 2013-10-24 11:45:03 +0000
551@@ -20,8 +20,8 @@
552 #define FAKE_TIMER_H
553
554 #include <QObject>
555-#include <timer.h>
556-#include "./fake.h"
557+#include <system/timer.h>
558+#include "fake.h"
559
560
561 class FakeTimer : public Timer, public Fake {
562
563=== modified file 'ubuntu-download-manager-tests/fake_uuid_factory.h'
564--- ubuntu-download-manager-tests/fake_uuid_factory.h 2013-07-23 18:03:00 +0000
565+++ ubuntu-download-manager-tests/fake_uuid_factory.h 2013-10-24 11:45:03 +0000
566@@ -20,7 +20,7 @@
567 #define FAKE_UUID_FACTORY_H
568
569 #include <QObject>
570-#include <uuid_factory.h>
571+#include <system/uuid_factory.h>
572 #include "./fake.h"
573
574 class FakeUuidFactory : public UuidFactory, public Fake {
575
576=== modified file 'ubuntu-download-manager-tests/test_download.cpp'
577--- ubuntu-download-manager-tests/test_download.cpp 2013-10-24 11:45:03 +0000
578+++ ubuntu-download-manager-tests/test_download.cpp 2013-10-24 11:45:03 +0000
579@@ -21,7 +21,7 @@
580 #include <QSignalSpy>
581 #include <QSslError>
582 #include <hash_algorithm.h>
583-#include <uuid_utils.h>
584+#include <system/uuid_utils.h>
585 #include "fake_network_reply.h"
586 #include "fake_process.h"
587 #include "test_download.h"
588
589=== modified file 'ubuntu-download-manager-tests/test_download_factory.cpp'
590--- ubuntu-download-manager-tests/test_download_factory.cpp 2013-10-24 11:45:03 +0000
591+++ ubuntu-download-manager-tests/test_download_factory.cpp 2013-10-24 11:45:03 +0000
592@@ -18,7 +18,7 @@
593
594 #include <single_download.h>
595 #include <hash_algorithm.h>
596-#include <uuid_utils.h>
597+#include <system/uuid_utils.h>
598 #include "test_download_factory.h"
599
600 TestDownloadFactory::TestDownloadFactory(QObject *parent)
601
602=== modified file 'ubuntu-download-manager-tests/test_download_manager.cpp'
603--- ubuntu-download-manager-tests/test_download_manager.cpp 2013-10-24 11:45:03 +0000
604+++ ubuntu-download-manager-tests/test_download_manager.cpp 2013-10-24 11:45:03 +0000
605@@ -19,7 +19,7 @@
606 #include <QSignalSpy>
607 #include <download_factory.h>
608 #include <download_struct.h>
609-#include <uuid_utils.h>
610+#include <system/uuid_utils.h>
611 #include "fake_process_factory.h"
612 #include "fake_system_network_info.h"
613 #include "test_download_manager.h"
614
615=== modified file 'ubuntu-download-manager-tests/test_download_queue.cpp'
616--- ubuntu-download-manager-tests/test_download_queue.cpp 2013-10-24 11:45:03 +0000
617+++ ubuntu-download-manager-tests/test_download_queue.cpp 2013-10-24 11:45:03 +0000
618@@ -18,7 +18,7 @@
619
620 #include <QDebug>
621 #include <QSignalSpy>
622-#include <uuid_utils.h>
623+#include <system/uuid_utils.h>
624 #include "test_download_queue.h"
625
626 TestDownloadQueue::TestDownloadQueue(QObject *parent)
627
628=== modified file 'ubuntu-download-manager-tests/test_downloads_db.cpp'
629--- ubuntu-download-manager-tests/test_downloads_db.cpp 2013-10-24 11:45:03 +0000
630+++ ubuntu-download-manager-tests/test_downloads_db.cpp 2013-10-24 11:45:03 +0000
631@@ -24,7 +24,7 @@
632 #include <QSqlError>
633 #include <hash_algorithm.h>
634 #include <metatypes.h>
635-#include <uuid_utils.h>
636+#include <system/uuid_utils.h>
637 #include "fake_download.h"
638 #include "fake_system_network_info.h"
639 #include "fake_request_factory.h"
640
641=== modified file 'ubuntu-download-manager-tests/test_group_download.cpp'
642--- ubuntu-download-manager-tests/test_group_download.cpp 2013-10-24 11:45:03 +0000
643+++ ubuntu-download-manager-tests/test_group_download.cpp 2013-10-24 11:45:03 +0000
644@@ -18,7 +18,7 @@
645
646 #include <QSignalSpy>
647 #include <group_download.h>
648-#include <uuid_utils.h>
649+#include <system/uuid_utils.h>
650 #include "fake_download.h"
651 #include "test_group_download.h"
652
653
654=== modified file 'ubuntu-download-manager-tests/test_group_download.h'
655--- ubuntu-download-manager-tests/test_group_download.h 2013-10-24 11:45:03 +0000
656+++ ubuntu-download-manager-tests/test_group_download.h 2013-10-24 11:45:03 +0000
657@@ -20,7 +20,7 @@
658 #define TEST_GROUP_DOWNLOAD_H
659
660 #include <QObject>
661-#include <uuid_factory.h>
662+#include <system/uuid_factory.h>
663 #include <group_download.h>
664 #include "fake_apparmor.h"
665 #include "fake_file_manager.h"
666
667=== modified file 'ubuntu-download-manager-tests/test_network_reply.h'
668--- ubuntu-download-manager-tests/test_network_reply.h 2013-09-25 10:30:57 +0000
669+++ ubuntu-download-manager-tests/test_network_reply.h 2013-10-24 11:45:03 +0000
670@@ -20,9 +20,9 @@
671 #define TEST_NETWORK_REPLY_H
672
673 #include <QObject>
674-#include <network_reply.h>
675-#include "./base_testcase.h"
676-#include "./test_runner.h"
677+#include <system/network_reply.h>
678+#include "base_testcase.h"
679+#include "test_runner.h"
680
681 class TestNetworkReply : public BaseTestCase {
682 Q_OBJECT

Subscribers

People subscribed via source and target branches