| 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 42f11b2b2feff3f8947801944c23c681bcab4dc7..b2791700cdf7c20154910a029192eba5aa2b9168 100644
|
| --- a/chrome/browser/extensions/app_notification_storage.cc
|
| +++ b/chrome/browser/extensions/app_notification_storage.cc
|
| @@ -131,7 +131,7 @@ bool LevelDbAppNotificationStorage::GetExtensionIds(
|
| scoped_ptr<leveldb::Iterator> iter(db_->NewIterator(read_options_));
|
| for (iter->SeekToFirst(); iter->Valid(); iter->Next()) {
|
| std::string key = iter->key().ToString();
|
| - if (Extension::IdIsValid(key))
|
| + if (extensions::Extension::IdIsValid(key))
|
| result->insert(key);
|
| }
|
|
|
|
|