diff options
author | jam@chromium.org <jam@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-01-28 02:30:17 +0000 |
---|---|---|
committer | jam@chromium.org <jam@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-01-28 02:30:17 +0000 |
commit | 585b303692879dc441661b26d2c02a8f4e9d52d3 (patch) | |
tree | 32bd9142637d76033f7d65e9a3a89198bd273796 /chrome/browser/fav_icon_helper.h | |
parent | 5d93dfabd3545d4925082fd2fe89b5074737ab6a (diff) | |
download | chromium_src-585b303692879dc441661b26d2c02a8f4e9d52d3.zip chromium_src-585b303692879dc441661b26d2c02a8f4e9d52d3.tar.gz chromium_src-585b303692879dc441661b26d2c02a8f4e9d52d3.tar.bz2 |
Rename WebNavigationObserver to TabContentsObserver.
Review URL: http://codereview.chromium.org/6404001
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@72916 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/browser/fav_icon_helper.h')
-rw-r--r-- | chrome/browser/fav_icon_helper.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/chrome/browser/fav_icon_helper.h b/chrome/browser/fav_icon_helper.h index f0706bd..494d46a 100644 --- a/chrome/browser/fav_icon_helper.h +++ b/chrome/browser/fav_icon_helper.h @@ -13,7 +13,7 @@ #include "base/ref_counted.h" #include "chrome/browser/cancelable_request.h" #include "chrome/browser/favicon_service.h" -#include "chrome/browser/tab_contents/web_navigation_observer.h" +#include "chrome/browser/tab_contents/tab_contents_observer.h" #include "chrome/common/ref_counted_util.h" #include "googleurl/src/gurl.h" @@ -65,7 +65,7 @@ class TabContents; // at which point we update the favicon of the NavigationEntry and notify // the database to save the favicon. -class FavIconHelper : public WebNavigationObserver { +class FavIconHelper : public TabContentsObserver { public: explicit FavIconHelper(TabContents* tab_contents); virtual ~FavIconHelper(); @@ -99,7 +99,7 @@ class FavIconHelper : public WebNavigationObserver { ImageDownloadCallback* callback; }; - // WebNavigationObserver implementation. + // TabContentsObserver implementation. virtual bool OnMessageReceived(const IPC::Message& message); void OnDidDownloadFavIcon(int id, |