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

Side by Side Diff: webkit/tools/test_shell/test_shell_request_context.cc

Issue 12518036: net: move host_resolver files from net/base to net/dns (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 9 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 | Annotate | Revision Log
« webkit/DEPS ('K') | « webkit/DEPS ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 "webkit/tools/test_shell/test_shell_request_context.h" 5 #include "webkit/tools/test_shell/test_shell_request_context.h"
6 6
7 #include "build/build_config.h" 7 #include "build/build_config.h"
8 8
9 #include "base/compiler_specific.h" 9 #include "base/compiler_specific.h"
10 #include "base/files/file_path.h" 10 #include "base/files/file_path.h"
11 #include "base/thread_task_runner_handle.h" 11 #include "base/thread_task_runner_handle.h"
12 #include "base/threading/worker_pool.h" 12 #include "base/threading/worker_pool.h"
13 #include "net/base/cert_verifier.h" 13 #include "net/base/cert_verifier.h"
14 #include "net/base/host_resolver.h"
15 #include "net/cookies/cookie_monster.h" 14 #include "net/cookies/cookie_monster.h"
15 #include "net/dns/host_resolver.h"
16 #include "net/ftp/ftp_network_layer.h" 16 #include "net/ftp/ftp_network_layer.h"
17 #include "net/http/http_auth_handler_factory.h" 17 #include "net/http/http_auth_handler_factory.h"
18 #include "net/http/http_network_session.h" 18 #include "net/http/http_network_session.h"
19 #include "net/http/http_server_properties_impl.h" 19 #include "net/http/http_server_properties_impl.h"
20 #include "net/proxy/proxy_config_service.h" 20 #include "net/proxy/proxy_config_service.h"
21 #include "net/proxy/proxy_config_service_fixed.h" 21 #include "net/proxy/proxy_config_service_fixed.h"
22 #include "net/proxy/proxy_service.h" 22 #include "net/proxy/proxy_service.h"
23 #include "net/ssl/default_server_bound_cert_store.h" 23 #include "net/ssl/default_server_bound_cert_store.h"
24 #include "net/ssl/server_bound_cert_service.h" 24 #include "net/ssl/server_bound_cert_service.h"
25 #include "net/ssl/ssl_config_service_defaults.h" 25 #include "net/ssl/ssl_config_service_defaults.h"
(...skipping 104 matching lines...) Expand 10 before | Expand all | Expand 10 after
130 file_system_context_, 130 file_system_context_,
131 SimpleResourceLoaderBridge::GetIoThread())); 131 SimpleResourceLoaderBridge::GetIoThread()));
132 job_factory->SetProtocolHandler( 132 job_factory->SetProtocolHandler(
133 "filesystem", 133 "filesystem",
134 fileapi::CreateFileSystemProtocolHandler(file_system_context_.get())); 134 fileapi::CreateFileSystemProtocolHandler(file_system_context_.get()));
135 storage_.set_job_factory(job_factory); 135 storage_.set_job_factory(job_factory);
136 } 136 }
137 137
138 TestShellRequestContext::~TestShellRequestContext() { 138 TestShellRequestContext::~TestShellRequestContext() {
139 } 139 }
OLDNEW
« webkit/DEPS ('K') | « webkit/DEPS ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698