| Index: content/child/notifications/pending_notification.h
|
| diff --git a/content/child/notifications/pending_notification.h b/content/child/notifications/pending_notification.h
|
| index 304cf5f582fca435fb916dcdac52bd84d16698ad..46560f9ecd3f4cfe9a180702472132214cc3bf81 100644
|
| --- a/content/child/notifications/pending_notification.h
|
| +++ b/content/child/notifications/pending_notification.h
|
| @@ -48,15 +48,21 @@ class PendingNotification {
|
|
|
| // To be called on the worker thread when the notification icon has been
|
| // fetched.
|
| - void DidFetchNotificationIcon(const SkBitmap& notification_icon);
|
| + void DidFetchNotificationIcon(const SkBitmap& icon);
|
| +
|
| + // To be called on the worker thread when the small notification icon has been
|
| + // fetched.
|
| + void DidFetchSmallIcon(const SkBitmap& icon);
|
|
|
| // To be called on the worker thread when an action icon has been fetched.
|
| - void DidFetchActionIcon(size_t action_index, const SkBitmap& action_icon);
|
| + void DidFetchActionIcon(size_t action_index, const SkBitmap& icon);
|
|
|
| scoped_refptr<base::SingleThreadTaskRunner> main_task_runner_;
|
|
|
| SkBitmap notification_icon_;
|
|
|
| + SkBitmap small_icon_;
|
| +
|
| std::vector<SkBitmap> action_icons_;
|
|
|
| base::Closure fetches_finished_barrier_closure_;
|
|
|