Index: chrome/browser/download/download_service.h |
diff --git a/chrome/browser/download/download_service.h b/chrome/browser/download/download_service.h |
index 1e0ad634b1105b115522e155717c9b5e4acfae61..fece2d19a78388e9e6c1aa537dd666554817c212 100644 |
--- a/chrome/browser/download/download_service.h |
+++ b/chrome/browser/download/download_service.h |
@@ -20,6 +20,10 @@ namespace content { |
class DownloadManager; |
} |
+namespace extensions { |
+class ExtensionDownloadsEventRouter; |
+} |
+ |
// Owning class for ChromeDownloadManagerDelegate. |
class DownloadService : public KeyedService { |
public: |
@@ -35,7 +39,7 @@ class DownloadService : public KeyedService { |
DownloadHistory* GetDownloadHistory(); |
#if !defined(OS_ANDROID) |
- ExtensionDownloadsEventRouter* GetExtensionEventRouter() { |
+ extensions::ExtensionDownloadsEventRouter* GetExtensionEventRouter() { |
return extension_event_router_.get(); |
} |
#endif |
@@ -97,7 +101,7 @@ class DownloadService : public KeyedService { |
// should be a separate EDER for on-record and off-record managers. |
// There does not appear to be a separate ExtensionSystem for on-record and |
// off-record profiles, so ExtensionSystem cannot own the EDER. |
- scoped_ptr<ExtensionDownloadsEventRouter> extension_event_router_; |
+ scoped_ptr<extensions::ExtensionDownloadsEventRouter> extension_event_router_; |
#endif |
DISALLOW_COPY_AND_ASSIGN(DownloadService); |