2011-09-24 17:25:15 -04:00
|
|
|
#include "ClearCookies.h"
|
|
|
|
#include "WebPage.h"
|
2012-04-04 18:18:17 -04:00
|
|
|
#include "WebPageManager.h"
|
2011-09-24 17:25:15 -04:00
|
|
|
#include "NetworkCookieJar.h"
|
|
|
|
#include <QNetworkCookie>
|
|
|
|
|
2012-04-04 18:18:17 -04:00
|
|
|
ClearCookies::ClearCookies(WebPageManager *manager, QStringList &arguments, QObject *parent) : Command(manager, arguments, parent) {}
|
2011-09-24 17:25:15 -04:00
|
|
|
|
2012-03-16 19:58:58 -04:00
|
|
|
void ClearCookies::start()
|
2011-09-24 17:25:15 -04:00
|
|
|
{
|
2012-06-21 23:34:51 -04:00
|
|
|
manager()->cookieJar()->clearCookies();
|
2011-09-24 17:25:15 -04:00
|
|
|
emit finished(new Response(true));
|
|
|
|
}
|