| 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 #include "chrome/browser/jumplist.h" | 5 #include "chrome/browser/jumplist.h" |
| 6 | 6 |
| 7 #include <windows.h> | 7 #include <windows.h> |
| 8 #include <shobjidl.h> | 8 #include <shobjidl.h> |
| 9 #include <propkey.h> | 9 #include <propkey.h> |
| 10 #include <propvarutil.h> | 10 #include <propvarutil.h> |
| (...skipping 716 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 727 most_visited_pages_, | 727 most_visited_pages_, |
| 728 recently_closed_pages_); | 728 recently_closed_pages_); |
| 729 MessageLoop* file_loop = g_browser_process->file_thread()->message_loop(); | 729 MessageLoop* file_loop = g_browser_process->file_thread()->message_loop(); |
| 730 if (file_loop) | 730 if (file_loop) |
| 731 file_loop->PostTask(FROM_HERE, icon_task); | 731 file_loop->PostTask(FROM_HERE, icon_task); |
| 732 | 732 |
| 733 // Delete all items in these lists since we don't need these lists any longer. | 733 // Delete all items in these lists since we don't need these lists any longer. |
| 734 most_visited_pages_.clear(); | 734 most_visited_pages_.clear(); |
| 735 recently_closed_pages_.clear(); | 735 recently_closed_pages_.clear(); |
| 736 } | 736 } |
| OLD | NEW |