Chromium Code Reviews| OLD | NEW |
|---|---|
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright 2012 The Chromium Authors. All rights reserved. |
|
grt (UTC plus 2)
2017/05/31 06:59:53
don't update old headers like this as per https://
chengx
2017/05/31 20:46:22
Done.
| |
| 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_WIN_JUMPLIST_H_ | 5 #ifndef CHROME_BROWSER_WIN_JUMPLIST_H_ |
| 6 #define CHROME_BROWSER_WIN_JUMPLIST_H_ | 6 #define CHROME_BROWSER_WIN_JUMPLIST_H_ |
| 7 | 7 |
| 8 #include <stddef.h> | 8 #include <stddef.h> |
| 9 | 9 |
| 10 #include <list> | 10 #include <list> |
| 11 #include <memory> | 11 #include <memory> |
| (...skipping 260 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 272 // JumpListIconsOld directory. | 272 // JumpListIconsOld directory. |
| 273 scoped_refptr<base::SequencedTaskRunner> delete_jumplisticons_task_runner_; | 273 scoped_refptr<base::SequencedTaskRunner> delete_jumplisticons_task_runner_; |
| 274 | 274 |
| 275 // For callbacks may be run after destruction. | 275 // For callbacks may be run after destruction. |
| 276 base::WeakPtrFactory<JumpList> weak_ptr_factory_; | 276 base::WeakPtrFactory<JumpList> weak_ptr_factory_; |
| 277 | 277 |
| 278 DISALLOW_COPY_AND_ASSIGN(JumpList); | 278 DISALLOW_COPY_AND_ASSIGN(JumpList); |
| 279 }; | 279 }; |
| 280 | 280 |
| 281 #endif // CHROME_BROWSER_WIN_JUMPLIST_H_ | 281 #endif // CHROME_BROWSER_WIN_JUMPLIST_H_ |
| OLD | NEW |