| OLD | NEW |
| 1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 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_UPDATER_WIN_H_ | 5 #ifndef CHROME_BROWSER_WIN_JUMPLIST_UPDATER_H_ |
| 6 #define CHROME_BROWSER_JUMPLIST_UPDATER_WIN_H_ | 6 #define CHROME_BROWSER_WIN_JUMPLIST_UPDATER_H_ |
| 7 | 7 |
| 8 #include <windows.h> | 8 #include <windows.h> |
| 9 #include <shobjidl.h> | 9 #include <shobjidl.h> |
| 10 #include <stddef.h> | 10 #include <stddef.h> |
| 11 | 11 |
| 12 #include <string> | 12 #include <string> |
| 13 #include <vector> | 13 #include <vector> |
| 14 | 14 |
| 15 #include "base/command_line.h" | 15 #include "base/command_line.h" |
| 16 #include "base/macros.h" | 16 #include "base/macros.h" |
| (...skipping 114 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 131 // Windows API interface used to modify JumpLists. | 131 // Windows API interface used to modify JumpLists. |
| 132 base::win::ScopedComPtr<ICustomDestinationList> destination_list_; | 132 base::win::ScopedComPtr<ICustomDestinationList> destination_list_; |
| 133 | 133 |
| 134 // The current user setting for "Number of recent items to display in Jump | 134 // The current user setting for "Number of recent items to display in Jump |
| 135 // Lists" option in the "Taskbar and Start Menu Properties". | 135 // Lists" option in the "Taskbar and Start Menu Properties". |
| 136 size_t user_max_items_; | 136 size_t user_max_items_; |
| 137 | 137 |
| 138 DISALLOW_COPY_AND_ASSIGN(JumpListUpdater); | 138 DISALLOW_COPY_AND_ASSIGN(JumpListUpdater); |
| 139 }; | 139 }; |
| 140 | 140 |
| 141 #endif // CHROME_BROWSER_JUMPLIST_UPDATER_WIN_H_ | 141 #endif // CHROME_BROWSER_WIN_JUMPLIST_UPDATER_H_ |
| OLD | NEW |