| OLD | NEW |
| 1 // Copyright (c) 2006-2009 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2006-2009 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #ifndef CHROME_BROWSER_JUMPLIST_H_ | 5 #ifndef CHROME_BROWSER_JUMPLIST_H_ |
| 6 #define CHROME_BROWSER_JUMPLIST_H_ | 6 #define CHROME_BROWSER_JUMPLIST_H_ |
| 7 | 7 |
| 8 #include <list> | 8 #include <list> |
| 9 #include <string> | 9 #include <string> |
| 10 #include <utility> | 10 #include <utility> |
| (...skipping 166 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 177 | 177 |
| 178 // Items in the "Recently Closed" category of the application JumpList. | 178 // Items in the "Recently Closed" category of the application JumpList. |
| 179 ShellLinkItemList recently_closed_pages_; | 179 ShellLinkItemList recently_closed_pages_; |
| 180 | 180 |
| 181 // A list of URLs we need to retrieve their fav icons. | 181 // A list of URLs we need to retrieve their fav icons. |
| 182 typedef std::pair<std::string, scoped_refptr<ShellLinkItem> > URLPair; | 182 typedef std::pair<std::string, scoped_refptr<ShellLinkItem> > URLPair; |
| 183 std::list<URLPair> icon_urls_; | 183 std::list<URLPair> icon_urls_; |
| 184 }; | 184 }; |
| 185 | 185 |
| 186 #endif // CHROME_BROWSER_JUMPLIST_H_ | 186 #endif // CHROME_BROWSER_JUMPLIST_H_ |
| OLD | NEW |