summaryrefslogtreecommitdiff
path: root/chromium/components/favicon/core/favicon_handler.h
diff options
context:
space:
mode:
Diffstat (limited to 'chromium/components/favicon/core/favicon_handler.h')
-rw-r--r--chromium/components/favicon/core/favicon_handler.h8
1 files changed, 8 insertions, 0 deletions
diff --git a/chromium/components/favicon/core/favicon_handler.h b/chromium/components/favicon/core/favicon_handler.h
index 631d3bf584b..2826297e977 100644
--- a/chromium/components/favicon/core/favicon_handler.h
+++ b/chromium/components/favicon/core/favicon_handler.h
@@ -124,6 +124,10 @@ class FaviconHandler {
virtual void OnFaviconDeleted(
const GURL& page_url,
FaviconDriverObserver::NotificationIconType notification_icon_type) = 0;
+
+#if defined(TOOLKIT_QT)
+ virtual void OnHandlerCompleted(FaviconHandler *handler) {}
+#endif
};
// |service| may be null (which means favicons are not saved). If |service|
@@ -163,6 +167,10 @@ class FaviconHandler {
FaviconDriverObserver::NotificationIconType handler_type,
bool candidates_from_web_manifest);
+#if defined(TOOLKIT_QT)
+ FaviconDriverObserver::NotificationIconType Type() const { return handler_type_; }
+#endif
+
private:
// Used to track a candidate for the favicon.
struct FaviconCandidate {