1 // Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
5 #ifndef CHROME_BROWSER_JUMPLIST_WIN_H_
6 #define CHROME_BROWSER_JUMPLIST_WIN_H_
13 #include "base/files/file_path.h"
14 #include "base/memory/weak_ptr.h"
15 #include "base/synchronization/lock.h"
16 #include "base/task/cancelable_task_tracker.h"
17 #include "chrome/browser/history/history_service.h"
18 #include "chrome/browser/history/history_types.h"
19 #include "chrome/browser/jumplist_updater_win.h"
20 #include "chrome/browser/sessions/tab_restore_service.h"
21 #include "chrome/browser/sessions/tab_restore_service_observer.h"
22 #include "content/public/browser/browser_thread.h"
25 struct FaviconImageResult
;
29 class NotificationRegistrar
;
35 // A class which implements an application JumpList.
36 // This class encapsulates operations required for updating an application
38 // * Retrieving "Most Visited" pages from HistoryService;
39 // * Retrieving strings from the application resource;
40 // * Creatng COM objects used by JumpList from PageUsageData objects;
41 // * Adding COM objects to JumpList, etc.
43 // This class also implements TabRestoreServiceObserver. So, once we call
44 // AddObserver() and register this class as an observer, it automatically
45 // updates a JumpList when a tab is added or removed.
47 // Updating a JumpList requires some file operations and it is not good to
48 // update it in a UI thread. To solve this problem, this class posts to a
49 // runnable method when it actually updates a JumpList.
51 // Note. base::CancelableTaskTracker is not thread safe, so we
52 // always delete JumpList on UI thread (the same thread it got constructed on).
53 class JumpList
: public TabRestoreServiceObserver
,
54 public content::NotificationObserver
,
55 public base::RefCountedThreadSafe
<
56 JumpList
, content::BrowserThread::DeleteOnUIThread
> {
60 // NotificationObserver implementation.
61 virtual void Observe(int type
,
62 const content::NotificationSource
& source
,
63 const content::NotificationDetails
& details
);
65 // Registers (or unregisters) this object as an observer.
66 // When the TabRestoreService object notifies the tab status is changed, this
67 // class automatically updates an application JumpList.
68 bool AddObserver(Profile
* profile
);
69 void RemoveObserver();
71 // Observer callback for TabRestoreService::Observer to notify when a tab is
73 // This function sends a query that retrieves "Most Visited" pages to
74 // HistoryService. When the query finishes successfully, HistoryService call
75 // OnSegmentUsageAvailable().
76 virtual void TabRestoreServiceChanged(TabRestoreService
* service
);
78 // Observer callback to notice when our associated TabRestoreService
80 virtual void TabRestoreServiceDestroyed(TabRestoreService
* service
);
82 // Cancel a pending jumplist update.
83 void CancelPendingUpdate();
85 // Terminate the jumplist: cancel any pending updates and remove observer
86 // from TabRestoreService. This must be called before the profile provided
87 // in the AddObserver method is destroyed.
90 // Returns true if the custom JumpList is enabled.
91 // We use the custom JumpList when we satisfy the following conditions:
92 // * Chromium is running on Windows 7 and;
93 // * Chromium is lauched without a "--disable-custom-jumplist" option.
94 // TODO(hbono): to be enabled by default when we finalize the categories and
95 // items of our JumpList.
96 static bool Enabled();
99 // Creates a ShellLinkItem object from a tab (or a window) and add it to the
101 // These functions are copied from the RecentlyClosedTabsHandler class for
102 // compatibility with the new-tab page.
103 bool AddTab(const TabRestoreService::Tab
* tab
,
104 ShellLinkItemList
* list
,
106 void AddWindow(const TabRestoreService::Window
* window
,
107 ShellLinkItemList
* list
,
110 // Starts loading a favicon for each URL in |icon_urls_|.
111 // This function sends a query to HistoryService.
112 // When finishing loading all favicons, this function posts a task that
113 // decompresses collected favicons and updates a JumpList.
114 void StartLoadingFavicon();
116 // A callback function for HistoryService that notify when the "Most Visited"
117 // list is available.
118 // This function updates the ShellLinkItemList objects and send another query
119 // that retrieves a favicon for each URL in the list.
120 void OnSegmentUsageAvailable(CancelableRequestProvider::Handle handle
,
121 std::vector
<PageUsageData
*>* data
);
123 // A callback function for HistoryService that notify when a requested favicon
125 // To avoid file operations, this function just attaches the given data to
126 // a ShellLinkItem object.
127 void OnFaviconDataAvailable(const chrome::FaviconImageResult
& image_result
);
129 // Callback for TopSites that notifies when the "Most
130 // Visited" list is available. This function updates the ShellLinkItemList
131 // objects and send another query that retrieves a favicon for each URL in
133 void OnMostVisitedURLsAvailable(
134 const history::MostVisitedURLList
& data
);
136 // Runnable method that updates the jumplist, once all the data
140 // Helper method for RunUpdate to create icon files for the asynchrounously
142 void CreateIconFiles(const ShellLinkItemList
& item_list
);
145 friend struct content::BrowserThread::DeleteOnThread
<
146 content::BrowserThread::UI
>;
147 friend class base::DeleteHelper
<JumpList
>;
150 // For callbacks may be run after destruction.
151 base::WeakPtrFactory
<JumpList
> weak_ptr_factory_
;
153 // Tracks FaviconService tasks.
154 base::CancelableTaskTracker cancelable_task_tracker_
;
156 // The Profile object is used to listen for events
159 // Lives on the UI thread.
160 scoped_ptr
<content::NotificationRegistrar
> registrar_
;
162 // App id to associate with the jump list.
163 std::wstring app_id_
;
165 // The directory which contains JumpList icons.
166 base::FilePath icon_dir_
;
168 // Items in the "Most Visited" category of the application JumpList,
169 // protected by the list_lock_.
170 ShellLinkItemList most_visited_pages_
;
172 // Items in the "Recently Closed" category of the application JumpList,
173 // protected by the list_lock_.
174 ShellLinkItemList recently_closed_pages_
;
176 // A list of URLs we need to retrieve their favicons,
177 // protected by the list_lock_.
178 typedef std::pair
<std::string
, scoped_refptr
<ShellLinkItem
> > URLPair
;
179 std::list
<URLPair
> icon_urls_
;
181 // Id of last favicon task. It's used to cancel current task if a new one
182 // comes in before it finishes.
183 base::CancelableTaskTracker::TaskId task_id_
;
185 // Lock for most_visited_pages_, recently_closed_pages_, icon_urls_
186 // as they may be used by up to 3 threads.
187 base::Lock list_lock_
;
189 DISALLOW_COPY_AND_ASSIGN(JumpList
);
192 #endif // CHROME_BROWSER_JUMPLIST_WIN_H_