OLD | NEW |
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 #include "chrome/browser/plugins/plugin_installer.h" | 5 #include "chrome/browser/plugins/plugin_installer.h" |
6 | 6 |
7 #include "base/bind.h" | 7 #include "base/bind.h" |
8 #include "base/bind_helpers.h" | 8 #include "base/bind_helpers.h" |
9 #include "base/file_util.h" | 9 #include "base/file_util.h" |
10 #include "base/process.h" | 10 #include "base/process.h" |
11 #include "chrome/browser/download/download_service.h" | 11 #include "chrome/browser/download/download_service.h" |
12 #include "chrome/browser/download/download_service_factory.h" | 12 #include "chrome/browser/download/download_service_factory.h" |
13 #include "chrome/browser/download/download_util.h" | 13 #include "chrome/browser/download/download_util.h" |
14 #include "chrome/browser/platform_util.h" | 14 #include "chrome/browser/platform_util.h" |
15 #include "chrome/browser/plugins/plugin_installer_observer.h" | 15 #include "chrome/browser/plugins/plugin_installer_observer.h" |
16 #include "chrome/browser/profiles/profile.h" | 16 #include "chrome/browser/profiles/profile.h" |
17 #include "content/public/browser/browser_context.h" | 17 #include "content/public/browser/browser_context.h" |
| 18 #include "content/public/browser/browser_thread.h" |
18 #include "content/public/browser/download_id.h" | 19 #include "content/public/browser/download_id.h" |
19 #include "content/public/browser/download_item.h" | 20 #include "content/public/browser/download_item.h" |
20 #include "content/public/browser/download_manager.h" | 21 #include "content/public/browser/download_manager.h" |
21 #include "content/public/browser/download_save_info.h" | 22 #include "content/public/browser/download_save_info.h" |
22 #include "content/public/browser/render_process_host.h" | 23 #include "content/public/browser/render_process_host.h" |
23 #include "content/public/browser/render_view_host.h" | 24 #include "content/public/browser/render_view_host.h" |
24 #include "content/public/browser/resource_context.h" | 25 #include "content/public/browser/resource_context.h" |
25 #include "content/public/browser/resource_dispatcher_host.h" | 26 #include "content/public/browser/resource_dispatcher_host.h" |
26 #include "content/public/browser/web_contents.h" | 27 #include "content/public/browser/web_contents.h" |
27 #include "net/url_request/url_request.h" | 28 #include "net/url_request/url_request.h" |
(...skipping 154 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
182 DCHECK_EQ(INSTALLER_STATE_DOWNLOADING, state_); | 183 DCHECK_EQ(INSTALLER_STATE_DOWNLOADING, state_); |
183 state_ = INSTALLER_STATE_IDLE; | 184 state_ = INSTALLER_STATE_IDLE; |
184 FOR_EACH_OBSERVER(PluginInstallerObserver, observers_, DownloadError(msg)); | 185 FOR_EACH_OBSERVER(PluginInstallerObserver, observers_, DownloadError(msg)); |
185 } | 186 } |
186 | 187 |
187 void PluginInstaller::DownloadCancelled() { | 188 void PluginInstaller::DownloadCancelled() { |
188 DCHECK_EQ(INSTALLER_STATE_DOWNLOADING, state_); | 189 DCHECK_EQ(INSTALLER_STATE_DOWNLOADING, state_); |
189 state_ = INSTALLER_STATE_IDLE; | 190 state_ = INSTALLER_STATE_IDLE; |
190 FOR_EACH_OBSERVER(PluginInstallerObserver, observers_, DownloadCancelled()); | 191 FOR_EACH_OBSERVER(PluginInstallerObserver, observers_, DownloadCancelled()); |
191 } | 192 } |
OLD | NEW |