summaryrefslogtreecommitdiffstats
path: root/chrome/browser/extensions/app_notification_storage.cc
diff options
context:
space:
mode:
Diffstat (limited to 'chrome/browser/extensions/app_notification_storage.cc')
-rw-r--r--chrome/browser/extensions/app_notification_storage.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/chrome/browser/extensions/app_notification_storage.cc b/chrome/browser/extensions/app_notification_storage.cc
index 42f11b2..b279170 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);
}