| 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 "content/browser/loader/buffered_resource_handler.h" | 5 #include "content/browser/loader/buffered_resource_handler.h" |
| 6 | 6 |
| 7 #include <vector> | 7 #include <vector> |
| 8 | 8 |
| 9 #include "base/bind.h" | 9 #include "base/bind.h" |
| 10 #include "base/logging.h" | 10 #include "base/logging.h" |
| 11 #include "base/metrics/histogram.h" | 11 #include "base/metrics/histogram.h" |
| 12 #include "base/string_util.h" | 12 #include "base/string_util.h" |
| 13 #include "content/browser/download/download_resource_handler.h" | 13 #include "content/browser/download/download_resource_handler.h" |
| 14 #include "content/browser/download/download_stats.h" | 14 #include "content/browser/download/download_stats.h" |
| 15 #include "content/browser/loader/certificate_resource_handler.h" | 15 #include "content/browser/loader/certificate_resource_handler.h" |
| 16 #include "content/browser/loader/resource_dispatcher_host_impl.h" | 16 #include "content/browser/loader/resource_dispatcher_host_impl.h" |
| 17 #include "content/browser/loader/resource_request_info_impl.h" | 17 #include "content/browser/loader/resource_request_info_impl.h" |
| 18 #include "content/browser/plugin_service_impl.h" | 18 #include "content/browser/plugin_service_impl.h" |
| 19 #include "content/public/browser/browser_thread.h" | 19 #include "content/public/browser/browser_thread.h" |
| 20 #include "content/public/browser/content_browser_client.h" | 20 #include "content/public/browser/content_browser_client.h" |
| 21 #include "content/public/browser/download_id.h" |
| 21 #include "content/public/browser/download_save_info.h" | 22 #include "content/public/browser/download_save_info.h" |
| 22 #include "content/public/browser/resource_context.h" | 23 #include "content/public/browser/resource_context.h" |
| 23 #include "content/public/browser/resource_dispatcher_host_delegate.h" | 24 #include "content/public/browser/resource_dispatcher_host_delegate.h" |
| 24 #include "content/public/common/resource_response.h" | 25 #include "content/public/common/resource_response.h" |
| 25 #include "net/base/io_buffer.h" | 26 #include "net/base/io_buffer.h" |
| 26 #include "net/base/mime_sniffer.h" | 27 #include "net/base/mime_sniffer.h" |
| 27 #include "net/base/mime_util.h" | 28 #include "net/base/mime_util.h" |
| 28 #include "net/base/net_errors.h" | 29 #include "net/base/net_errors.h" |
| 29 #include "net/http/http_content_disposition.h" | 30 #include "net/http/http_content_disposition.h" |
| 30 #include "net/http/http_response_headers.h" | 31 #include "net/http/http_response_headers.h" |
| (...skipping 303 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 334 return true; | 335 return true; |
| 335 } | 336 } |
| 336 | 337 |
| 337 // Install download handler | 338 // Install download handler |
| 338 info->set_is_download(true); | 339 info->set_is_download(true); |
| 339 scoped_ptr<ResourceHandler> handler( | 340 scoped_ptr<ResourceHandler> handler( |
| 340 host_->CreateResourceHandlerForDownload( | 341 host_->CreateResourceHandlerForDownload( |
| 341 request_, | 342 request_, |
| 342 true, // is_content_initiated | 343 true, // is_content_initiated |
| 343 must_download, | 344 must_download, |
| 345 DownloadId(), |
| 344 scoped_ptr<DownloadSaveInfo>(new DownloadSaveInfo()), | 346 scoped_ptr<DownloadSaveInfo>(new DownloadSaveInfo()), |
| 345 DownloadResourceHandler::OnStartedCallback())); | 347 DownloadResourceHandler::OnStartedCallback())); |
| 346 return UseAlternateNextHandler(handler.Pass()); | 348 return UseAlternateNextHandler(handler.Pass()); |
| 347 } | 349 } |
| 348 | 350 |
| 349 bool BufferedResourceHandler::UseAlternateNextHandler( | 351 bool BufferedResourceHandler::UseAlternateNextHandler( |
| 350 scoped_ptr<ResourceHandler> new_handler) { | 352 scoped_ptr<ResourceHandler> new_handler) { |
| 351 if (response_->head.headers && // Can be NULL if FTP. | 353 if (response_->head.headers && // Can be NULL if FTP. |
| 352 response_->head.headers->response_code() / 100 != 2) { | 354 response_->head.headers->response_code() / 100 != 2) { |
| 353 // The response code indicates that this is an error page, but we don't | 355 // The response code indicates that this is an error page, but we don't |
| (...skipping 101 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 455 const std::vector<webkit::WebPluginInfo>& plugins) { | 457 const std::vector<webkit::WebPluginInfo>& plugins) { |
| 456 bool defer = false; | 458 bool defer = false; |
| 457 if (!ProcessResponse(&defer)) { | 459 if (!ProcessResponse(&defer)) { |
| 458 controller()->Cancel(); | 460 controller()->Cancel(); |
| 459 } else if (!defer) { | 461 } else if (!defer) { |
| 460 controller()->Resume(); | 462 controller()->Resume(); |
| 461 } | 463 } |
| 462 } | 464 } |
| 463 | 465 |
| 464 } // namespace content | 466 } // namespace content |
| OLD | NEW |