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

Side by Side Diff: content/browser/renderer_host/buffered_resource_handler.cc

Issue 8372034: Created an interface for DownloadFile, for use in unit tests. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fixed typo Created 9 years, 1 month 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 | Annotate | Revision Log
OLDNEW
1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2011 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/renderer_host/buffered_resource_handler.h" 5 #include "content/browser/renderer_host/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_id_factory.h" 13 #include "content/browser/download/download_id_factory.h"
14 #include "content/browser/download/download_resource_handler.h" 14 #include "content/browser/download/download_resource_handler.h"
15 #include "content/browser/download/download_types.h"
15 #include "content/browser/plugin_service.h" 16 #include "content/browser/plugin_service.h"
16 #include "content/browser/renderer_host/resource_dispatcher_host.h" 17 #include "content/browser/renderer_host/resource_dispatcher_host.h"
17 #include "content/browser/renderer_host/resource_dispatcher_host_request_info.h" 18 #include "content/browser/renderer_host/resource_dispatcher_host_request_info.h"
18 #include "content/browser/renderer_host/x509_user_cert_resource_handler.h" 19 #include "content/browser/renderer_host/x509_user_cert_resource_handler.h"
19 #include "content/browser/resource_context.h" 20 #include "content/browser/resource_context.h"
20 #include "content/common/resource_response.h" 21 #include "content/common/resource_response.h"
21 #include "content/public/browser/browser_thread.h" 22 #include "content/public/browser/browser_thread.h"
22 #include "content/public/browser/content_browser_client.h" 23 #include "content/public/browser/content_browser_client.h"
23 #include "content/public/browser/resource_dispatcher_host_delegate.h" 24 #include "content/public/browser/resource_dispatcher_host_delegate.h"
24 #include "net/base/io_buffer.h" 25 #include "net/base/io_buffer.h"
(...skipping 442 matching lines...) Expand 10 before | Expand all | Expand 10 after
467 wait_for_plugins_ = false; 468 wait_for_plugins_ = false;
468 if (!request_) 469 if (!request_)
469 return; 470 return;
470 471
471 ResourceDispatcherHostRequestInfo* info = 472 ResourceDispatcherHostRequestInfo* info =
472 ResourceDispatcherHost::InfoForRequest(request_); 473 ResourceDispatcherHost::InfoForRequest(request_);
473 host_->PauseRequest(info->child_id(), info->request_id(), false); 474 host_->PauseRequest(info->child_id(), info->request_id(), false);
474 if (!CompleteResponseStarted(info->request_id(), false)) 475 if (!CompleteResponseStarted(info->request_id(), false))
475 host_->CancelRequest(info->child_id(), info->request_id(), false); 476 host_->CancelRequest(info->child_id(), info->request_id(), false);
476 } 477 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698