diff options
author | avi@chromium.org <avi@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-03-16 14:13:08 +0000 |
---|---|---|
committer | avi@chromium.org <avi@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-03-16 14:13:08 +0000 |
commit | 16835e6886d84cf0e8c040550774ede0541222d9 (patch) | |
tree | af635f6df8d59ce1bb4fcbcf3441649f91be41b5 /chrome/browser/possible_url_model.cc | |
parent | 9740d6ea63860a06a12ecd2b563a6b1d6d546818 (diff) | |
download | chromium_src-16835e6886d84cf0e8c040550774ede0541222d9.zip chromium_src-16835e6886d84cf0e8c040550774ede0541222d9.tar.gz chromium_src-16835e6886d84cf0e8c040550774ede0541222d9.tar.bz2 |
fav icon -> favicon. Pass 11: rest of chrome/browser/ui
BUG=76073
TEST=none; no visible change
Review URL: http://codereview.chromium.org/6698052
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@78360 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/browser/possible_url_model.cc')
-rw-r--r-- | chrome/browser/possible_url_model.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/chrome/browser/possible_url_model.cc b/chrome/browser/possible_url_model.cc index d2f907e..bb49663 100644 --- a/chrome/browser/possible_url_model.cc +++ b/chrome/browser/possible_url_model.cc @@ -164,7 +164,7 @@ SkBitmap PossibleURLModel::GetIcon(int row) { CancelableRequestProvider::Handle h = favicon_service->GetFaviconForURL( result.url, &consumer_, - NewCallback(this, &PossibleURLModel::OnFavIconAvailable)); + NewCallback(this, &PossibleURLModel::OnFaviconAvailable)); consumer_.SetClientData(favicon_service, h, result.index); // Add an entry to the map so that we don't attempt to request the // favicon again. @@ -182,7 +182,7 @@ int PossibleURLModel::CompareValues(int row1, int row2, int column_id) { return ui::TableModel::CompareValues(row1, row2, column_id); } -void PossibleURLModel::OnFavIconAvailable( +void PossibleURLModel::OnFaviconAvailable( FaviconService::Handle h, bool favicon_available, scoped_refptr<RefCountedMemory> data, |