diff options
author | Andrea Diamantini <adjam7@gmail.com> | 2013-06-16 09:43:32 +0200 |
---|---|---|
committer | Andrea Diamantini <adjam7@gmail.com> | 2013-06-16 09:43:32 +0200 |
commit | 303258b8e313432ca66984f9dfbf5624259462b3 (patch) | |
tree | c6b39bf2927ffe5e061c28c7b7ea36b289ef03fa /src/icons/iconmanager.h | |
parent | Let private popus open in private mode (diff) | |
download | rekonq-303258b8e313432ca66984f9dfbf5624259462b3.tar.xz |
Restore use of webkit icon cache
Fix rekonq icon retrieve mechanism to let it show well engine icons
on bar
BUG:272565
Diffstat (limited to 'src/icons/iconmanager.h')
-rw-r--r-- | src/icons/iconmanager.h | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/icons/iconmanager.h b/src/icons/iconmanager.h index bbb58bdb..4903d7c4 100644 --- a/src/icons/iconmanager.h +++ b/src/icons/iconmanager.h @@ -53,20 +53,20 @@ public: static IconManager *self(); KIcon iconForUrl(const KUrl &url); + QString iconPathForUrl(const KUrl &url); - void provideIcon(QWebFrame *mFrame, const KUrl &url, bool notify = true); - - void downloadIconFromUrl(const KUrl &url); - void clearIconCache(); void saveDesktopIconForUrl(const KUrl &u); + // Engine ToolBar needed methods + void provideEngineFavicon(const KUrl &); + KIcon engineFavicon(const KUrl &); + private: IconManager(QObject *parent = 0); - bool existsIconForUrl(const KUrl &url); QString favIconForUrl(const KUrl &url); QString _faviconsDir; |