| Index: chrome/browser/extensions/app_notification_storage.cc
|
| diff --git a/chrome/browser/extensions/app_notification_storage.cc b/chrome/browser/extensions/app_notification_storage.cc
|
| index 914f997b077b30cc94975bffc61cfa1d6ae1d864..42f11b2b2feff3f8947801944c23c681bcab4dc7 100644
|
| --- a/chrome/browser/extensions/app_notification_storage.cc
|
| +++ b/chrome/browser/extensions/app_notification_storage.cc
|
| @@ -80,8 +80,7 @@ void AppNotificationListToJSON(const AppNotificationList& list,
|
| bool JSONToAppNotificationList(const std::string& json,
|
| AppNotificationList* list) {
|
| CHECK(list);
|
| - scoped_ptr<Value> value(JSONReader::Read(json,
|
| - false /* allow_trailing_comma */));
|
| + scoped_ptr<Value> value(JSONReader::Read(json));
|
| if (!value.get() || value->GetType() != Value::TYPE_LIST)
|
| return false;
|
|
|
|
|