Home | History | Annotate | Download | only in browser

Lines Matching defs:JumpList

35 // A class which implements an application JumpList.
37 // JumpList:
40 // * Creatng COM objects used by JumpList from PageUsageData objects;
41 // * Adding COM objects to JumpList, etc.
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
49 // runnable method when it actually updates a JumpList.
52 // always delete JumpList on UI thread (the same thread it got constructed on).
53 class JumpList : public TabRestoreServiceObserver,
56 JumpList, content::BrowserThread::DeleteOnUIThread> {
58 JumpList();
67 // class automatically updates an application JumpList.
82 // Cancel a pending jumplist update.
85 // Terminate the jumplist: cancel any pending updates and remove observer
90 // Returns true if the custom JumpList is enabled.
91 // The custom jumplist works only on Windows 7 and above.
109 // decompresses collected favicons and updates a JumpList.
133 // Runnable method that updates the jumplist, once all the data
144 friend class base::DeleteHelper<JumpList>;
145 ~JumpList();
148 base::WeakPtrFactory<JumpList> weak_ptr_factory_;
162 // The directory which contains JumpList icons.
165 // Items in the "Most Visited" category of the application JumpList,
169 // Items in the "Recently Closed" category of the application JumpList,
186 DISALLOW_COPY_AND_ASSIGN(JumpList);