| 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/plugin_installer.h" | 5 #include "chrome/browser/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/plugin_installer_observer.h" | 15 #include "chrome/browser/plugin_installer_observer.h" |
| 16 #include "chrome/browser/profiles/profile.h" | 16 #include "chrome/browser/profiles/profile.h" |
| 17 #include "chrome/browser/ui/tab_contents/tab_contents.h" | 17 #include "chrome/browser/ui/tab_contents/tab_contents.h" |
| 18 #include "content/public/browser/browser_context.h" | 18 #include "content/public/browser/browser_context.h" |
| 19 #include "content/public/browser/download_id.h" | 19 #include "content/public/browser/download_id.h" |
| 20 #include "content/public/browser/download_item.h" | 20 #include "content/public/browser/download_item.h" |
| 21 #include "content/public/browser/download_manager.h" | 21 #include "content/public/browser/download_manager.h" |
| 22 #include "content/public/browser/download_save_info.h" | 22 #include "content/public/browser/download_save_info.h" |
| 23 #include "content/public/browser/render_process_host.h" | 23 #include "content/public/browser/render_process_host.h" |
| 24 #include "content/public/browser/render_view_host.h" | 24 #include "content/public/browser/render_view_host.h" |
| 25 #include "content/public/browser/resource_context.h" | 25 #include "content/public/browser/resource_context.h" |
| 26 #include "content/public/browser/resource_dispatcher_host.h" | 26 #include "content/public/browser/resource_dispatcher_host.h" |
| 27 #include "content/public/browser/web_contents.h" | 27 #include "content/public/browser/web_contents.h" |
| 28 #include "net/url_request/url_request.h" | 28 #include "net/url_request/url_request.h" |
| 29 #include "net/url_request/url_request_context.h" |
| 29 #include "webkit/plugins/npapi/plugin_group.h" | 30 #include "webkit/plugins/npapi/plugin_group.h" |
| 30 | 31 |
| 31 using content::BrowserContext; | 32 using content::BrowserContext; |
| 32 using content::BrowserThread; | 33 using content::BrowserThread; |
| 33 using content::DownloadItem; | 34 using content::DownloadItem; |
| 34 using content::DownloadManager; | 35 using content::DownloadManager; |
| 35 using content::ResourceDispatcherHost; | 36 using content::ResourceDispatcherHost; |
| 36 | 37 |
| 37 namespace { | 38 namespace { |
| 38 | 39 |
| 39 void BeginDownload( | 40 void BeginDownload( |
| 40 const GURL& url, | 41 const GURL& url, |
| 41 content::ResourceContext* resource_context, | 42 content::ResourceContext* resource_context, |
| 42 int render_process_host_id, | 43 int render_process_host_id, |
| 43 int render_view_host_routing_id, | 44 int render_view_host_routing_id, |
| 44 const ResourceDispatcherHost::DownloadStartedCallback& callback) { | 45 const ResourceDispatcherHost::DownloadStartedCallback& callback) { |
| 45 DCHECK(BrowserThread::CurrentlyOn(BrowserThread::IO)); | 46 DCHECK(BrowserThread::CurrentlyOn(BrowserThread::IO)); |
| 46 | 47 |
| 47 ResourceDispatcherHost* rdh = ResourceDispatcherHost::Get(); | 48 ResourceDispatcherHost* rdh = ResourceDispatcherHost::Get(); |
| 48 scoped_ptr<net::URLRequest> request(new net::URLRequest( | 49 scoped_ptr<net::URLRequest> request( |
| 49 url, | 50 resource_context->GetRequestContext()->CreateRequest(url, NULL)); |
| 50 NULL, | |
| 51 resource_context->GetRequestContext())); | |
| 52 net::Error error = rdh->BeginDownload( | 51 net::Error error = rdh->BeginDownload( |
| 53 request.Pass(), | 52 request.Pass(), |
| 54 false, // is_content_initiated | 53 false, // is_content_initiated |
| 55 resource_context, | 54 resource_context, |
| 56 render_process_host_id, | 55 render_process_host_id, |
| 57 render_view_host_routing_id, | 56 render_view_host_routing_id, |
| 58 true, // prefer_cache | 57 true, // prefer_cache |
| 59 content::DownloadSaveInfo(), | 58 content::DownloadSaveInfo(), |
| 60 callback); | 59 callback); |
| 61 | 60 |
| (...skipping 187 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 249 | 248 |
| 250 void PluginInstaller::DownloadCancelled() { | 249 void PluginInstaller::DownloadCancelled() { |
| 251 DCHECK_EQ(INSTALLER_STATE_DOWNLOADING, state_); | 250 DCHECK_EQ(INSTALLER_STATE_DOWNLOADING, state_); |
| 252 state_ = INSTALLER_STATE_IDLE; | 251 state_ = INSTALLER_STATE_IDLE; |
| 253 FOR_EACH_OBSERVER(PluginInstallerObserver, observers_, DownloadCancelled()); | 252 FOR_EACH_OBSERVER(PluginInstallerObserver, observers_, DownloadCancelled()); |
| 254 } | 253 } |
| 255 | 254 |
| 256 bool PluginInstaller::MatchesPlugin(const webkit::WebPluginInfo& plugin) { | 255 bool PluginInstaller::MatchesPlugin(const webkit::WebPluginInfo& plugin) { |
| 257 return plugin.name.find(group_name_matcher_) != string16::npos; | 256 return plugin.name.find(group_name_matcher_) != string16::npos; |
| 258 } | 257 } |
| OLD | NEW |