#include "PasswordHelper.h" #include PasswordHelper::PasswordHelper(QObject *parent) : QObject(parent) {} void PasswordHelper::saveRequest(const QString &origin, const QString &username, const QString &password) { emit savePasswordRequested(origin, username, password); } void PasswordHelper::log(const QString &msg) { qDebug() << "[JS Log]:" << msg; }