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/renderer_host/resource_loader.h" | 5 #include "content/browser/loader/resource_loader.h" |
6 | 6 |
7 #include "base/message_loop.h" | 7 #include "base/message_loop.h" |
8 #include "base/time.h" | 8 #include "base/time.h" |
9 #include "content/browser/child_process_security_policy_impl.h" | 9 #include "content/browser/child_process_security_policy_impl.h" |
10 #include "content/browser/renderer_host/doomed_resource_handler.h" | 10 #include "content/browser/loader/doomed_resource_handler.h" |
11 #include "content/browser/renderer_host/resource_loader_delegate.h" | 11 #include "content/browser/loader/resource_loader_delegate.h" |
12 #include "content/browser/renderer_host/resource_request_info_impl.h" | 12 #include "content/browser/loader/resource_request_info_impl.h" |
13 #include "content/browser/ssl/ssl_client_auth_handler.h" | 13 #include "content/browser/ssl/ssl_client_auth_handler.h" |
14 #include "content/browser/ssl/ssl_manager.h" | 14 #include "content/browser/ssl/ssl_manager.h" |
15 #include "content/common/ssl_status_serialization.h" | 15 #include "content/common/ssl_status_serialization.h" |
16 #include "content/public/browser/cert_store.h" | 16 #include "content/public/browser/cert_store.h" |
17 #include "content/public/browser/resource_dispatcher_host_login_delegate.h" | 17 #include "content/public/browser/resource_dispatcher_host_login_delegate.h" |
18 #include "content/public/common/resource_response.h" | 18 #include "content/public/common/resource_response.h" |
19 #include "net/base/load_flags.h" | 19 #include "net/base/load_flags.h" |
20 #include "net/http/http_response_headers.h" | 20 #include "net/http/http_response_headers.h" |
21 #include "webkit/appcache/appcache_interceptor.h" | 21 #include "webkit/appcache/appcache_interceptor.h" |
22 | 22 |
(...skipping 550 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
573 // we resume. | 573 // we resume. |
574 deferred_stage_ = DEFERRED_FINISH; | 574 deferred_stage_ = DEFERRED_FINISH; |
575 } | 575 } |
576 } | 576 } |
577 | 577 |
578 void ResourceLoader::CallDidFinishLoading() { | 578 void ResourceLoader::CallDidFinishLoading() { |
579 delegate_->DidFinishLoading(this); | 579 delegate_->DidFinishLoading(this); |
580 } | 580 } |
581 | 581 |
582 } // namespace content | 582 } // namespace content |
OLD | NEW |