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 b2791700cdf7c20154910a029192eba5aa2b9168..9a0d2f8ae93a583a93e83a648d03998c6b756b73 100644 |
--- a/chrome/browser/extensions/app_notification_storage.cc |
+++ b/chrome/browser/extensions/app_notification_storage.cc |
@@ -20,6 +20,8 @@ using base::JSONReader; |
using base::JSONWriter; |
using content::BrowserThread; |
+namespace extensions { |
+ |
// A concrete implementation of the AppNotificationStorage interface, using |
// LevelDb for backing storage. |
class LevelDbAppNotificationStorage : public AppNotificationStorage { |
@@ -131,7 +133,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 (extensions::Extension::IdIsValid(key)) |
+ if (Extension::IdIsValid(key)) |
result->insert(key); |
} |
@@ -226,3 +228,5 @@ bool LevelDbAppNotificationStorage::OpenDbIfNeeded(bool create_if_missing) { |
db_.reset(db); |
return true; |
} |
+ |
+} // namespace extensions |