OLD | NEW |
1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2010 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 #include "chrome/browser/download/download_manager.h" | 5 #include "chrome/browser/download/download_manager.h" |
6 | 6 |
7 #include "app/l10n_util.h" | 7 #include "app/l10n_util.h" |
8 #include "app/resource_bundle.h" | 8 #include "app/resource_bundle.h" |
9 #include "base/callback.h" | 9 #include "base/callback.h" |
10 #include "base/file_util.h" | 10 #include "base/file_util.h" |
11 #include "base/logging.h" | 11 #include "base/logging.h" |
12 #include "base/path_service.h" | 12 #include "base/path_service.h" |
13 #include "base/rand_util.h" | 13 #include "base/rand_util.h" |
14 #include "base/stl_util-inl.h" | 14 #include "base/stl_util-inl.h" |
15 #include "base/stringprintf.h" | 15 #include "base/stringprintf.h" |
16 #include "base/sys_string_conversions.h" | 16 #include "base/sys_string_conversions.h" |
17 #include "base/task.h" | 17 #include "base/task.h" |
18 #include "base/utf_string_conversions.h" | 18 #include "base/utf_string_conversions.h" |
19 #include "build/build_config.h" | 19 #include "build/build_config.h" |
20 #include "chrome/browser/browser.h" | |
21 #include "chrome/browser/browser_list.h" | 20 #include "chrome/browser/browser_list.h" |
22 #include "chrome/browser/browser_process.h" | 21 #include "chrome/browser/browser_process.h" |
23 #include "chrome/browser/browser_thread.h" | 22 #include "chrome/browser/browser_thread.h" |
24 #include "chrome/browser/download/download_file_manager.h" | 23 #include "chrome/browser/download/download_file_manager.h" |
25 #include "chrome/browser/download/download_history.h" | 24 #include "chrome/browser/download/download_history.h" |
26 #include "chrome/browser/download/download_item.h" | 25 #include "chrome/browser/download/download_item.h" |
27 #include "chrome/browser/download/download_prefs.h" | 26 #include "chrome/browser/download/download_prefs.h" |
28 #include "chrome/browser/download/download_status_updater.h" | 27 #include "chrome/browser/download/download_status_updater.h" |
29 #include "chrome/browser/download/download_util.h" | 28 #include "chrome/browser/download/download_util.h" |
30 #include "chrome/browser/extensions/extensions_service.h" | 29 #include "chrome/browser/extensions/extensions_service.h" |
31 #include "chrome/browser/history/download_create_info.h" | 30 #include "chrome/browser/history/download_create_info.h" |
32 #include "chrome/browser/net/chrome_url_request_context.h" | 31 #include "chrome/browser/net/chrome_url_request_context.h" |
33 #include "chrome/browser/platform_util.h" | 32 #include "chrome/browser/platform_util.h" |
34 #include "chrome/browser/profile.h" | 33 #include "chrome/browser/profile.h" |
35 #include "chrome/browser/renderer_host/render_process_host.h" | 34 #include "chrome/browser/renderer_host/render_process_host.h" |
36 #include "chrome/browser/renderer_host/render_view_host.h" | 35 #include "chrome/browser/renderer_host/render_view_host.h" |
37 #include "chrome/browser/tab_contents/infobar_delegate.h" | 36 #include "chrome/browser/tab_contents/infobar_delegate.h" |
38 #include "chrome/browser/tab_contents/tab_contents.h" | 37 #include "chrome/browser/tab_contents/tab_contents.h" |
39 #include "chrome/browser/tab_contents/tab_util.h" | 38 #include "chrome/browser/tab_contents/tab_util.h" |
| 39 #include "chrome/browser/ui/browser.h" |
40 #include "chrome/common/chrome_paths.h" | 40 #include "chrome/common/chrome_paths.h" |
41 #include "chrome/common/notification_service.h" | 41 #include "chrome/common/notification_service.h" |
42 #include "chrome/common/notification_type.h" | 42 #include "chrome/common/notification_type.h" |
43 #include "chrome/common/pref_names.h" | 43 #include "chrome/common/pref_names.h" |
44 #include "googleurl/src/gurl.h" | 44 #include "googleurl/src/gurl.h" |
45 #include "grit/generated_resources.h" | 45 #include "grit/generated_resources.h" |
46 #include "grit/theme_resources.h" | 46 #include "grit/theme_resources.h" |
47 #include "net/base/mime_util.h" | 47 #include "net/base/mime_util.h" |
48 #include "net/base/net_util.h" | 48 #include "net/base/net_util.h" |
49 | 49 |
(...skipping 951 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1001 observed_download_manager_->RemoveObserver(this); | 1001 observed_download_manager_->RemoveObserver(this); |
1002 } | 1002 } |
1003 | 1003 |
1004 void DownloadManager::OtherDownloadManagerObserver::ModelChanged() { | 1004 void DownloadManager::OtherDownloadManagerObserver::ModelChanged() { |
1005 observing_download_manager_->NotifyModelChanged(); | 1005 observing_download_manager_->NotifyModelChanged(); |
1006 } | 1006 } |
1007 | 1007 |
1008 void DownloadManager::OtherDownloadManagerObserver::ManagerGoingDown() { | 1008 void DownloadManager::OtherDownloadManagerObserver::ManagerGoingDown() { |
1009 observed_download_manager_ = NULL; | 1009 observed_download_manager_ = NULL; |
1010 } | 1010 } |
OLD | NEW |