| Index: chrome/browser/extensions/app_notification_manager.cc
|
| diff --git a/chrome/browser/extensions/app_notification_manager.cc b/chrome/browser/extensions/app_notification_manager.cc
|
| index e5c5d6904f1a7e14951e32d0f0c8c935bbcf9c64..269107b1b43e1188e89c5953683f16e020893b45 100644
|
| --- a/chrome/browser/extensions/app_notification_manager.cc
|
| +++ b/chrome/browser/extensions/app_notification_manager.cc
|
| @@ -109,7 +109,7 @@ bool AppNotificationManager::Add(AppNotification* item) {
|
|
|
| SyncAddChange(*linked_item);
|
|
|
| - sort(list.begin(), list.end(), AppNotificationSortPredicate);
|
| + std::sort(list.begin(), list.end(), AppNotificationSortPredicate);
|
|
|
| if (list.size() > AppNotificationManager::kMaxNotificationPerApp) {
|
| AppNotification* removed = list.begin()->get();
|
|
|