summaryrefslogtreecommitdiffstats
path: root/content/browser/browser_process_sub_thread.h
diff options
context:
space:
mode:
Diffstat (limited to 'content/browser/browser_process_sub_thread.h')
-rw-r--r--content/browser/browser_process_sub_thread.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/content/browser/browser_process_sub_thread.h b/content/browser/browser_process_sub_thread.h
index bfaab3f..adbda97 100644
--- a/content/browser/browser_process_sub_thread.h
+++ b/content/browser/browser_process_sub_thread.h
@@ -10,7 +10,9 @@
#include "content/browser/browser_thread.h"
#include "content/common/content_export.h"
+namespace content {
class NotificationService;
+}
// ----------------------------------------------------------------------------
// BrowserProcessSubThread
@@ -34,7 +36,7 @@ class CONTENT_EXPORT BrowserProcessSubThread : public BrowserThread {
// Each specialized thread has its own notification service.
// Note: We don't use scoped_ptr because the destructor runs on the wrong
// thread.
- NotificationService* notification_service_;
+ content::NotificationService* notification_service_;
DISALLOW_COPY_AND_ASSIGN(BrowserProcessSubThread);
};