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

Side by Side Diff: chrome/browser/download/download_target_determiner.h

Issue 2530053003: chrome: Cleanup class/struct forward declarations (Closed)
Patch Set: Rebase + address comment Created 4 years 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 2013 The Chromium Authors. All rights reserved. 1 // Copyright 2013 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 CHROME_BROWSER_DOWNLOAD_DOWNLOAD_TARGET_DETERMINER_H_ 5 #ifndef CHROME_BROWSER_DOWNLOAD_DOWNLOAD_TARGET_DETERMINER_H_
6 #define CHROME_BROWSER_DOWNLOAD_DOWNLOAD_TARGET_DETERMINER_H_ 6 #define CHROME_BROWSER_DOWNLOAD_DOWNLOAD_TARGET_DETERMINER_H_
7 7
8 #include <memory> 8 #include <memory>
9 9
10 #include "base/files/file_path.h" 10 #include "base/files/file_path.h"
11 #include "base/macros.h" 11 #include "base/macros.h"
12 #include "base/memory/ref_counted.h" 12 #include "base/memory/ref_counted.h"
13 #include "base/memory/weak_ptr.h" 13 #include "base/memory/weak_ptr.h"
14 #include "base/task/cancelable_task_tracker.h" 14 #include "base/task/cancelable_task_tracker.h"
15 #include "build/build_config.h" 15 #include "build/build_config.h"
16 #include "chrome/browser/download/download_path_reservation_tracker.h" 16 #include "chrome/browser/download/download_path_reservation_tracker.h"
17 #include "chrome/browser/download/download_target_determiner_delegate.h" 17 #include "chrome/browser/download/download_target_determiner_delegate.h"
18 #include "chrome/browser/download/download_target_info.h" 18 #include "chrome/browser/download/download_target_info.h"
19 #include "chrome/common/safe_browsing/download_file_types.pb.h" 19 #include "chrome/common/safe_browsing/download_file_types.pb.h"
20 #include "content/public/browser/download_danger_type.h" 20 #include "content/public/browser/download_danger_type.h"
21 #include "content/public/browser/download_item.h" 21 #include "content/public/browser/download_item.h"
22 #include "content/public/browser/download_manager_delegate.h" 22 #include "content/public/browser/download_manager_delegate.h"
23 #include "ppapi/features/features.h" 23 #include "ppapi/features/features.h"
24 24
25 class ChromeDownloadManagerDelegate;
26 class Profile; 25 class Profile;
27 class DownloadPrefs; 26 class DownloadPrefs;
28 27
29 namespace content { 28 namespace content {
30 enum DownloadDangerType; 29 enum DownloadDangerType;
31 } 30 }
32 31
33 // Determines the target of the download. 32 // Determines the target of the download.
34 // 33 //
35 // Terminology: 34 // Terminology:
(...skipping 290 matching lines...) Expand 10 before | Expand all | Expand 10 after
326 DownloadTargetDeterminerDelegate* delegate_; 325 DownloadTargetDeterminerDelegate* delegate_;
327 CompletionCallback completion_callback_; 326 CompletionCallback completion_callback_;
328 base::CancelableTaskTracker history_tracker_; 327 base::CancelableTaskTracker history_tracker_;
329 328
330 base::WeakPtrFactory<DownloadTargetDeterminer> weak_ptr_factory_; 329 base::WeakPtrFactory<DownloadTargetDeterminer> weak_ptr_factory_;
331 330
332 DISALLOW_COPY_AND_ASSIGN(DownloadTargetDeterminer); 331 DISALLOW_COPY_AND_ASSIGN(DownloadTargetDeterminer);
333 }; 332 };
334 333
335 #endif // CHROME_BROWSER_DOWNLOAD_DOWNLOAD_TARGET_DETERMINER_H_ 334 #endif // CHROME_BROWSER_DOWNLOAD_DOWNLOAD_TARGET_DETERMINER_H_
OLDNEW
« no previous file with comments | « chrome/browser/download/download_shelf_context_menu.h ('k') | chrome/browser/download/download_target_determiner_delegate.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698