Index: chrome/browser/extensions/lazy_background_page_test_util.h |
diff --git a/chrome/browser/extensions/lazy_background_page_test_util.h b/chrome/browser/extensions/lazy_background_page_test_util.h |
index cf5f5408ffa7ccc35426a4fa3d4f2e50cb222fdd..ba9e7f8435bde047244873028d6fdbf04e5e8478 100644 |
--- a/chrome/browser/extensions/lazy_background_page_test_util.h |
+++ b/chrome/browser/extensions/lazy_background_page_test_util.h |
@@ -13,17 +13,15 @@ |
class LazyBackgroundObserver { |
public: |
LazyBackgroundObserver() |
- : page_created_(chrome::NOTIFICATION_EXTENSION_BACKGROUND_PAGE_READY, |
+ : page_created_(extensions::NOTIFICATION_EXTENSION_BACKGROUND_PAGE_READY, |
content::NotificationService::AllSources()), |
- page_closed_(chrome::NOTIFICATION_EXTENSION_HOST_DESTROYED, |
- content::NotificationService::AllSources()) { |
- } |
+ page_closed_(extensions::NOTIFICATION_EXTENSION_HOST_DESTROYED, |
+ content::NotificationService::AllSources()) {} |
explicit LazyBackgroundObserver(Profile* profile) |
- : page_created_(chrome::NOTIFICATION_EXTENSION_BACKGROUND_PAGE_READY, |
+ : page_created_(extensions::NOTIFICATION_EXTENSION_BACKGROUND_PAGE_READY, |
content::NotificationService::AllSources()), |
- page_closed_(chrome::NOTIFICATION_EXTENSION_HOST_DESTROYED, |
- content::Source<Profile>(profile)) { |
- } |
+ page_closed_(extensions::NOTIFICATION_EXTENSION_HOST_DESTROYED, |
+ content::Source<Profile>(profile)) {} |
void Wait() { |
page_created_.Wait(); |
page_closed_.Wait(); |