Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(836)

Unified Diff: content/browser/download/download_manager.h

Issue 8437002: Move BrowserThread to content namespace. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: A few updates. Created 9 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « content/browser/download/download_item.cc ('k') | content/browser/download/download_manager.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/browser/download/download_manager.h
diff --git a/content/browser/download/download_manager.h b/content/browser/download/download_manager.h
index 44157e6bf65b5ce991476bd6bed744d537354c30..cf8d2db4a181143d753237d84207361f1c49f600 100644
--- a/content/browser/download/download_manager.h
+++ b/content/browser/download/download_manager.h
@@ -69,8 +69,8 @@ class DownloadManagerDelegate;
// Browser's download manager: manages all downloads and destination view.
class CONTENT_EXPORT DownloadManager
- : public base::RefCountedThreadSafe<DownloadManager,
- BrowserThread::DeleteOnUIThread>,
+ : public base::RefCountedThreadSafe<
+ DownloadManager, content::BrowserThread::DeleteOnUIThread>,
public DownloadStatusUpdaterDelegate {
public:
DownloadManager(content::DownloadManagerDelegate* delegate,
@@ -295,9 +295,10 @@ class CONTENT_EXPORT DownloadManager
friend class DownloadTest;
friend class MockDownloadManager;
- friend class base::RefCountedThreadSafe<DownloadManager,
- BrowserThread::DeleteOnUIThread>;
- friend struct BrowserThread::DeleteOnThread<BrowserThread::UI>;
+ friend class base::RefCountedThreadSafe<
+ DownloadManager, content::BrowserThread::DeleteOnUIThread>;
+ friend struct content::BrowserThread::DeleteOnThread<
+ content::BrowserThread::UI>;
friend class DeleteTask<DownloadManager>;
virtual ~DownloadManager();
« no previous file with comments | « content/browser/download/download_item.cc ('k') | content/browser/download/download_manager.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698