diff options
author | ben@chromium.org <ben@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2008-12-03 01:36:00 +0000 |
---|---|---|
committer | ben@chromium.org <ben@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2008-12-03 01:36:00 +0000 |
commit | 5855df7de77eee7ad51cdac73f7d294525d75faf (patch) | |
tree | 9231cdfe54737935a63620b894e895cba69bbb33 /chrome/browser/alternate_nav_url_fetcher.h | |
parent | f82a64d15a03c6db10ea33449c34d496a145b08e (diff) | |
download | chromium_src-5855df7de77eee7ad51cdac73f7d294525d75faf.zip chromium_src-5855df7de77eee7ad51cdac73f7d294525d75faf.tar.gz chromium_src-5855df7de77eee7ad51cdac73f7d294525d75faf.tar.bz2 |
Convert Alternate NavURL Fetcher to use the new infobar framework.
http://crbug.com/4620
Review URL: http://codereview.chromium.org/13070
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@6268 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/browser/alternate_nav_url_fetcher.h')
-rw-r--r-- | chrome/browser/alternate_nav_url_fetcher.h | 17 |
1 files changed, 14 insertions, 3 deletions
diff --git a/chrome/browser/alternate_nav_url_fetcher.h b/chrome/browser/alternate_nav_url_fetcher.h index b28b48f0..501bed4 100644 --- a/chrome/browser/alternate_nav_url_fetcher.h +++ b/chrome/browser/alternate_nav_url_fetcher.h @@ -7,6 +7,7 @@ #include <string> +#include "chrome/browser/infobar_delegate.h" #include "chrome/browser/url_fetcher.h" #include "chrome/common/notification_registrar.h" #include "chrome/common/notification_service.h" @@ -26,7 +27,8 @@ class NavigationController; // We'll do this when the load commits, or when the navigation controller // itself is deleted. class AlternateNavURLFetcher : public NotificationObserver, - public URLFetcher::Delegate { + public URLFetcher::Delegate, + public LinkInfoBarDelegate { public: enum State { NOT_STARTED, @@ -52,10 +54,16 @@ class AlternateNavURLFetcher : public NotificationObserver, const ResponseCookies& cookies, const std::string& data); + // LinkInfoBarDelegate + virtual std::wstring GetMessageTextWithOffset(size_t* link_offset) const; + virtual std::wstring GetLinkText() const; + virtual SkBitmap* GetIcon() const; + virtual bool LinkClicked(WindowOpenDisposition disposition); + virtual void InfoBarClosed(); + private: // Displays the infobar if all conditions are met (the page has loaded and - // the fetch of the alternate URL succeeded). If the infobar is displayed, - // this object is no longer necessary and this function WILL DELETE |this|!. + // the fetch of the alternate URL succeeded). void ShowInfobarIfPossible(); std::wstring alternate_nav_url_; @@ -63,6 +71,9 @@ class AlternateNavURLFetcher : public NotificationObserver, NavigationController* controller_; State state_; bool navigated_to_entry_; + + // The TabContents the InfoBarDelegate was added to. + TabContents* infobar_contents_; NotificationRegistrar registrar_; |