diff options
author | avi@chromium.org <avi@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-03-14 19:45:13 +0000 |
---|---|---|
committer | avi@chromium.org <avi@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-03-14 19:45:13 +0000 |
commit | 34952d11913bf856e0ec2a35ecd66372ec908f3b (patch) | |
tree | b1687768f76dd1068b9eb02099f9d43415fae40e /chrome/browser/jumplist_win.h | |
parent | c88c7c2bd7ddf9b88d09c51a991d1ac4cd24b741 (diff) | |
download | chromium_src-34952d11913bf856e0ec2a35ecd66372ec908f3b.zip chromium_src-34952d11913bf856e0ec2a35ecd66372ec908f3b.tar.gz chromium_src-34952d11913bf856e0ec2a35ecd66372ec908f3b.tar.bz2 |
fav icon -> favicon. Pass 1.
BUG=76073
TEST=none; no visible change
Review URL: http://codereview.chromium.org/6679047
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@78076 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/browser/jumplist_win.h')
-rw-r--r-- | chrome/browser/jumplist_win.h | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/chrome/browser/jumplist_win.h b/chrome/browser/jumplist_win.h index b7549d5..8bd7b4c 100644 --- a/chrome/browser/jumplist_win.h +++ b/chrome/browser/jumplist_win.h @@ -142,23 +142,23 @@ class JumpList : public TabRestoreServiceObserver { ShellLinkItemList* list, size_t max_items); - // Starts loading a fav icon for each URL in |icon_urls_|. + // Starts loading a favicon for each URL in |icon_urls_|. // This function just sends a query to HistoryService. bool StartLoadingFavIcon(); // A callback function for HistoryService that notify when the "Most Visited" // list is available. // This function updates the ShellLinkItemList objects and send another query - // that retrieves a fav icon for each URL in the list. + // that retrieves a favicon for each URL in the list. void OnSegmentUsageAvailable(CancelableRequestProvider::Handle handle, std::vector<PageUsageData*>* data); - // a callback function for HistoryService that notify when a requested fav - // icon is available. + // A callback function for HistoryService that notify when a requested favicon + // is available. // To avoid file operations, this function just attaches the given data to // a ShellLinkItem object. - // When finishing loading all fav icons, this function posts a task that - // decompresses collected fav icons and updates a JumpList. + // When finishing loading all favicons, this function posts a task that + // decompresses collected favicons and updates a JumpList. void OnFavIconDataAvailable(HistoryService::Handle handle, bool know_favicon, scoped_refptr<RefCountedMemory> data, @@ -185,7 +185,7 @@ class JumpList : public TabRestoreServiceObserver { // Items in the "Recently Closed" category of the application JumpList. ShellLinkItemList recently_closed_pages_; - // A list of URLs we need to retrieve their fav icons. + // A list of URLs we need to retrieve their favicons. typedef std::pair<std::string, scoped_refptr<ShellLinkItem> > URLPair; std::list<URLPair> icon_urls_; }; |