diff options
author | estade@chromium.org <estade@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-08-29 03:07:29 +0000 |
---|---|---|
committer | estade@chromium.org <estade@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-08-29 03:07:29 +0000 |
commit | 452be197b1bfd23ab71db38cea5655bda0e8cc24 (patch) | |
tree | 09f9e18096384409b460f0dfe3018000b524ee68 /chrome/browser/possible_url_model.h | |
parent | eec396cc0a529c3c1d65221fbe76c73ef84e4759 (diff) | |
download | chromium_src-452be197b1bfd23ab71db38cea5655bda0e8cc24.zip chromium_src-452be197b1bfd23ab71db38cea5655bda0e8cc24.tar.gz chromium_src-452be197b1bfd23ab71db38cea5655bda0e8cc24.tar.bz2 |
Fix a crash where we were looking for the fav icon in the wrong service.
This caused the possible url dialog in the options menu to never load favicons, and instead DCHECK (crashing debug builds).
Review URL: http://codereview.chromium.org/179034
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@24852 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/browser/possible_url_model.h')
-rw-r--r-- | chrome/browser/possible_url_model.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/chrome/browser/possible_url_model.h b/chrome/browser/possible_url_model.h index 4a688fe..ac3013c 100644 --- a/chrome/browser/possible_url_model.h +++ b/chrome/browser/possible_url_model.h @@ -47,7 +47,7 @@ class PossibleURLModel : public TableModel { virtual int CompareValues(int row1, int row2, int column_id); - virtual void OnFavIconAvailable(HistoryService::Handle h, + virtual void OnFavIconAvailable(FaviconService::Handle h, bool fav_icon_available, scoped_refptr<RefCountedBytes> data, bool expired, |