diff options
author | Andrea Diamantini <adjam7@gmail.com> | 2009-12-08 12:25:54 +0100 |
---|---|---|
committer | Andrea Diamantini <adjam7@gmail.com> | 2009-12-08 12:25:54 +0100 |
commit | ecbe1d942e41a29a8d0bffdb328643e4c2a278b1 (patch) | |
tree | 4763b4e632dc81081fb1066f4f3bd66818101187 /src/application.h | |
parent | rekonq 0.3.19 (diff) | |
download | rekonq-ecbe1d942e41a29a8d0bffdb328643e4c2a278b1.tar.xz |
xss attach prevention.
I have to say, BRUTE prevention :)
Hope this works.
Also some fixes in Urlbar class to ensure that a KUrl is a KUrl
and a QString is a QString.
Removed the annoying "restore url on focus out" feature. No other browsers
have it and I really cannot understand gain
Diffstat (limited to 'src/application.h')
-rw-r--r-- | src/application.h | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/src/application.h b/src/application.h index b15720f5..fa2354f2 100644 --- a/src/application.h +++ b/src/application.h @@ -33,7 +33,6 @@ // KDE Includes #include <KUniqueApplication> #include <KIcon> -#include <KUrl> #include <kio/job.h> #include <kio/jobclasses.h> @@ -135,9 +134,8 @@ private slots: void postLaunch(); private: - - KUrl guessUrlFromString(const QString &url); - + KUrl xssSanitization(const KUrl &url); + static QPointer<HistoryManager> s_historyManager; static QPointer<BookmarkProvider> s_bookmarkProvider; static QPointer<SessionManager> s_sessionManager; |