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

Side by Side Diff: content/browser/loader/resource_dispatcher_host_unittest.cc

Issue 2969463003: Move resource_request.h to content/public/common. (Closed)
Patch Set: Merge Created 3 years, 5 months 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
OLDNEW
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 <stddef.h> 5 #include <stddef.h>
6 6
7 #include <memory> 7 #include <memory>
8 #include <utility> 8 #include <utility>
9 #include <vector> 9 #include <vector>
10 10
(...skipping 22 matching lines...) Expand all
33 #include "content/browser/loader/navigation_url_loader.h" 33 #include "content/browser/loader/navigation_url_loader.h"
34 #include "content/browser/loader/resource_dispatcher_host_impl.h" 34 #include "content/browser/loader/resource_dispatcher_host_impl.h"
35 #include "content/browser/loader/resource_loader.h" 35 #include "content/browser/loader/resource_loader.h"
36 #include "content/browser/loader/resource_message_filter.h" 36 #include "content/browser/loader/resource_message_filter.h"
37 #include "content/browser/loader/resource_request_info_impl.h" 37 #include "content/browser/loader/resource_request_info_impl.h"
38 #include "content/browser/loader_delegate_impl.h" 38 #include "content/browser/loader_delegate_impl.h"
39 #include "content/common/appcache_interfaces.h" 39 #include "content/common/appcache_interfaces.h"
40 #include "content/common/child_process_host_impl.h" 40 #include "content/common/child_process_host_impl.h"
41 #include "content/common/navigation_params.h" 41 #include "content/common/navigation_params.h"
42 #include "content/common/resource_messages.h" 42 #include "content/common/resource_messages.h"
43 #include "content/common/resource_request.h"
44 #include "content/common/view_messages.h" 43 #include "content/common/view_messages.h"
45 #include "content/public/browser/global_request_id.h" 44 #include "content/public/browser/global_request_id.h"
46 #include "content/public/browser/render_process_host.h" 45 #include "content/public/browser/render_process_host.h"
47 #include "content/public/browser/render_view_host.h" 46 #include "content/public/browser/render_view_host.h"
48 #include "content/public/browser/resource_context.h" 47 #include "content/public/browser/resource_context.h"
49 #include "content/public/browser/resource_dispatcher_host_delegate.h" 48 #include "content/public/browser/resource_dispatcher_host_delegate.h"
50 #include "content/public/browser/resource_request_info.h" 49 #include "content/public/browser/resource_request_info.h"
51 #include "content/public/browser/resource_throttle.h" 50 #include "content/public/browser/resource_throttle.h"
52 #include "content/public/browser/web_contents.h" 51 #include "content/public/browser/web_contents.h"
53 #include "content/public/browser/web_contents_observer.h" 52 #include "content/public/browser/web_contents_observer.h"
54 #include "content/public/common/browser_side_navigation_policy.h" 53 #include "content/public/common/browser_side_navigation_policy.h"
55 #include "content/public/common/child_process_host.h" 54 #include "content/public/common/child_process_host.h"
56 #include "content/public/common/process_type.h" 55 #include "content/public/common/process_type.h"
56 #include "content/public/common/resource_request.h"
57 #include "content/public/common/resource_response.h" 57 #include "content/public/common/resource_response.h"
58 #include "content/public/test/test_browser_context.h" 58 #include "content/public/test/test_browser_context.h"
59 #include "content/public/test/test_browser_thread_bundle.h" 59 #include "content/public/test/test_browser_thread_bundle.h"
60 #include "content/public/test/test_renderer_host.h" 60 #include "content/public/test/test_renderer_host.h"
61 #include "content/public/test/test_utils.h" 61 #include "content/public/test/test_utils.h"
62 #include "content/test/test_content_browser_client.h" 62 #include "content/test/test_content_browser_client.h"
63 #include "content/test/test_navigation_url_loader_delegate.h" 63 #include "content/test/test_navigation_url_loader_delegate.h"
64 #include "net/base/chunked_upload_data_stream.h" 64 #include "net/base/chunked_upload_data_stream.h"
65 #include "net/base/elements_upload_data_stream.h" 65 #include "net/base/elements_upload_data_stream.h"
66 #include "net/base/load_flags.h" 66 #include "net/base/load_flags.h"
(...skipping 3823 matching lines...) Expand 10 before | Expand all | Expand 10 after
3890 return nullptr; 3890 return nullptr;
3891 } 3891 }
3892 3892
3893 net::URLRequestJob* TestURLRequestJobFactory::MaybeInterceptResponse( 3893 net::URLRequestJob* TestURLRequestJobFactory::MaybeInterceptResponse(
3894 net::URLRequest* request, 3894 net::URLRequest* request,
3895 net::NetworkDelegate* network_delegate) const { 3895 net::NetworkDelegate* network_delegate) const {
3896 return nullptr; 3896 return nullptr;
3897 } 3897 }
3898 3898
3899 } // namespace content 3899 } // namespace content
OLDNEW
« no previous file with comments | « content/browser/loader/resource_dispatcher_host_impl.cc ('k') | content/browser/loader/url_loader_factory_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698