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

Side by Side Diff: content/browser/download/download_manager_impl.h

Issue 2351513002: net: rename BoundNetLog to NetLogWithSource (Closed)
Patch Set: one more fix, content bound_net_log_ Created 4 years, 3 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 unified diff | Download patch
OLDNEW
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #ifndef CONTENT_BROWSER_DOWNLOAD_DOWNLOAD_MANAGER_IMPL_H_ 5 #ifndef CONTENT_BROWSER_DOWNLOAD_DOWNLOAD_MANAGER_IMPL_H_
6 #define CONTENT_BROWSER_DOWNLOAD_DOWNLOAD_MANAGER_IMPL_H_ 6 #define CONTENT_BROWSER_DOWNLOAD_DOWNLOAD_MANAGER_IMPL_H_
7 7
8 #include <stdint.h> 8 #include <stdint.h>
9 9
10 #include <memory> 10 #include <memory>
(...skipping 11 matching lines...) Expand all
22 #include "base/synchronization/lock.h" 22 #include "base/synchronization/lock.h"
23 #include "content/browser/download/download_item_impl_delegate.h" 23 #include "content/browser/download/download_item_impl_delegate.h"
24 #include "content/browser/download/url_downloader.h" 24 #include "content/browser/download/url_downloader.h"
25 #include "content/common/content_export.h" 25 #include "content/common/content_export.h"
26 #include "content/public/browser/browser_thread.h" 26 #include "content/public/browser/browser_thread.h"
27 #include "content/public/browser/download_manager.h" 27 #include "content/public/browser/download_manager.h"
28 #include "content/public/browser/download_manager_delegate.h" 28 #include "content/public/browser/download_manager_delegate.h"
29 #include "content/public/browser/download_url_parameters.h" 29 #include "content/public/browser/download_url_parameters.h"
30 30
31 namespace net { 31 namespace net {
32 class BoundNetLog; 32 class NetLogWithSource;
33 } 33 }
34 34
35 namespace content { 35 namespace content {
36 class DownloadFileFactory; 36 class DownloadFileFactory;
37 class DownloadItemFactory; 37 class DownloadItemFactory;
38 class DownloadItemImpl; 38 class DownloadItemImpl;
39 class DownloadRequestHandleInterface; 39 class DownloadRequestHandleInterface;
40 class ResourceContext; 40 class ResourceContext;
41 41
42 class CONTENT_EXPORT DownloadManagerImpl : public DownloadManager, 42 class CONTENT_EXPORT DownloadManagerImpl : public DownloadManager,
(...skipping 195 matching lines...) Expand 10 before | Expand all | Expand 10 after
238 url_downloaders_; 238 url_downloaders_;
239 239
240 base::WeakPtrFactory<DownloadManagerImpl> weak_factory_; 240 base::WeakPtrFactory<DownloadManagerImpl> weak_factory_;
241 241
242 DISALLOW_COPY_AND_ASSIGN(DownloadManagerImpl); 242 DISALLOW_COPY_AND_ASSIGN(DownloadManagerImpl);
243 }; 243 };
244 244
245 } // namespace content 245 } // namespace content
246 246
247 #endif // CONTENT_BROWSER_DOWNLOAD_DOWNLOAD_MANAGER_IMPL_H_ 247 #endif // CONTENT_BROWSER_DOWNLOAD_DOWNLOAD_MANAGER_IMPL_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698