diff options
author | avi@chromium.org <avi@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-03-16 18:54:05 +0000 |
---|---|---|
committer | avi@chromium.org <avi@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-03-16 18:54:05 +0000 |
commit | f16039d23043cf97048540b3916be44825697f9b (patch) | |
tree | 4f607808a77397f26cbca4935b5996abdc188796 /chrome/browser/custom_home_pages_table_model.h | |
parent | f660caef294d1ad42142b8a500da4ea49af2a4bf (diff) | |
download | chromium_src-f16039d23043cf97048540b3916be44825697f9b.zip chromium_src-f16039d23043cf97048540b3916be44825697f9b.tar.gz chromium_src-f16039d23043cf97048540b3916be44825697f9b.tar.bz2 |
fav icon -> favicon. Pass 12/12: all the rest
BUG=76073
TEST=test; no visible change
Review URL: http://codereview.chromium.org/6667044
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@78408 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/browser/custom_home_pages_table_model.h')
-rw-r--r-- | chrome/browser/custom_home_pages_table_model.h | 9 |
1 files changed, 2 insertions, 7 deletions
diff --git a/chrome/browser/custom_home_pages_table_model.h b/chrome/browser/custom_home_pages_table_model.h index 3fd813c..875818e 100644 --- a/chrome/browser/custom_home_pages_table_model.h +++ b/chrome/browser/custom_home_pages_table_model.h @@ -59,7 +59,7 @@ class CustomHomePagesTableModel : public ui::TableModel { struct Entry; // Loads the title and favicon for the specified entry. - void LoadTitleAndFavIcon(Entry* entry); + void LoadTitleAndFavicon(Entry* entry); // Callback from history service. Updates the title of the Entry whose // |title_handle| matches |handle| and notifies the observer of the change. @@ -70,7 +70,7 @@ class CustomHomePagesTableModel : public ui::TableModel { // Callback from history service. Updates the icon of the Entry whose // |favicon_handle| matches |handle| and notifies the observer of the change. - void OnGotFavIcon(FaviconService::Handle handle, + void OnGotFavicon(FaviconService::Handle handle, history::FaviconData favicon); // Returns the entry whose |member| matches |handle| and sets |entry_index| to @@ -79,11 +79,6 @@ class CustomHomePagesTableModel : public ui::TableModel { CancelableRequestProvider::Handle handle, int* entry_index); - // Returns the entry whose |favicon_handle| matches |handle| and sets - // |entry_index| to the index of the entry. - Entry* GetEntryByFavIconHandle(FaviconService::Handle handle, - int* entry_index); - // Returns the URL for a particular row, formatted for display to the user. string16 FormattedURL(int row) const; |