| 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 "android_webview/browser/net/aw_url_request_context_getter.h" | 5 #include "android_webview/browser/net/aw_url_request_context_getter.h" |
| 6 | 6 |
| 7 #include <utility> | 7 #include <utility> |
| 8 #include <vector> | 8 #include <vector> |
| 9 | 9 |
| 10 #include "android_webview/browser/aw_browser_context.h" | 10 #include "android_webview/browser/aw_browser_context.h" |
| 11 #include "android_webview/browser/aw_content_browser_client.h" | 11 #include "android_webview/browser/aw_content_browser_client.h" |
| 12 #include "android_webview/browser/net/aw_cookie_store_wrapper.h" | 12 #include "android_webview/browser/net/aw_cookie_store_wrapper.h" |
| 13 #include "android_webview/browser/net/aw_http_user_agent_settings.h" | 13 #include "android_webview/browser/net/aw_http_user_agent_settings.h" |
| 14 #include "android_webview/browser/net/aw_network_delegate.h" | 14 #include "android_webview/browser/net/aw_network_delegate.h" |
| 15 #include "android_webview/browser/net/aw_request_interceptor.h" | 15 #include "android_webview/browser/net/aw_request_interceptor.h" |
| 16 #include "android_webview/browser/net/aw_url_request_job_factory.h" | 16 #include "android_webview/browser/net/aw_url_request_job_factory.h" |
| 17 #include "android_webview/browser/net/init_native_callback.h" | 17 #include "android_webview/browser/net/init_native_callback.h" |
| 18 #include "android_webview/browser/net/token_binding_manager.h" | 18 #include "android_webview/browser/net/token_binding_manager.h" |
| 19 #include "android_webview/common/aw_content_client.h" | 19 #include "android_webview/common/aw_content_client.h" |
| 20 #include "base/bind.h" | 20 #include "base/bind.h" |
| 21 #include "base/command_line.h" | 21 #include "base/command_line.h" |
| 22 #include "base/files/file_path.h" | 22 #include "base/files/file_path.h" |
| 23 #include "base/memory/ptr_util.h" | 23 #include "base/memory/ptr_util.h" |
| 24 #include "base/strings/string_number_conversions.h" | 24 #include "base/strings/string_number_conversions.h" |
| 25 #include "base/task_scheduler/post_task.h" |
| 25 #include "base/threading/sequenced_worker_pool.h" | 26 #include "base/threading/sequenced_worker_pool.h" |
| 26 #include "components/prefs/pref_service.h" | 27 #include "components/prefs/pref_service.h" |
| 27 #include "content/public/browser/browser_thread.h" | 28 #include "content/public/browser/browser_thread.h" |
| 28 #include "content/public/browser/content_browser_client.h" | 29 #include "content/public/browser/content_browser_client.h" |
| 29 #include "content/public/browser/cookie_store_factory.h" | 30 #include "content/public/browser/cookie_store_factory.h" |
| 30 #include "content/public/common/content_client.h" | 31 #include "content/public/common/content_client.h" |
| 31 #include "content/public/common/content_switches.h" | 32 #include "content/public/common/content_switches.h" |
| 32 #include "content/public/common/url_constants.h" | 33 #include "content/public/common/url_constants.h" |
| 33 #include "net/base/cache_type.h" | 34 #include "net/base/cache_type.h" |
| 34 #include "net/cookies/cookie_store.h" | 35 #include "net/cookies/cookie_store.h" |
| (...skipping 178 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 213 #if !BUILDFLAG(DISABLE_FTP_SUPPORT) | 214 #if !BUILDFLAG(DISABLE_FTP_SUPPORT) |
| 214 builder.set_ftp_enabled(false); // Android WebView does not support ftp yet. | 215 builder.set_ftp_enabled(false); // Android WebView does not support ftp yet. |
| 215 #endif | 216 #endif |
| 216 DCHECK(proxy_config_service_.get()); | 217 DCHECK(proxy_config_service_.get()); |
| 217 std::unique_ptr<net::ChannelIDService> channel_id_service; | 218 std::unique_ptr<net::ChannelIDService> channel_id_service; |
| 218 if (TokenBindingManager::GetInstance()->is_enabled()) { | 219 if (TokenBindingManager::GetInstance()->is_enabled()) { |
| 219 base::FilePath channel_id_path = | 220 base::FilePath channel_id_path = |
| 220 browser_context->GetPath().Append(kChannelIDFilename); | 221 browser_context->GetPath().Append(kChannelIDFilename); |
| 221 scoped_refptr<net::SQLiteChannelIDStore> channel_id_db; | 222 scoped_refptr<net::SQLiteChannelIDStore> channel_id_db; |
| 222 channel_id_db = new net::SQLiteChannelIDStore( | 223 channel_id_db = new net::SQLiteChannelIDStore( |
| 223 channel_id_path, | 224 channel_id_path, base::CreateSequencedTaskRunnerWithTraits( |
| 224 BrowserThread::GetBlockingPool()->GetSequencedTaskRunner( | 225 base::TaskTraits().MayBlock().WithPriority( |
| 225 BrowserThread::GetBlockingPool()->GetSequenceToken())); | 226 base::TaskPriority::BACKGROUND))); |
| 226 | 227 |
| 227 channel_id_service.reset(new net::ChannelIDService( | 228 channel_id_service.reset(new net::ChannelIDService( |
| 228 new net::DefaultChannelIDStore(channel_id_db.get()))); | 229 new net::DefaultChannelIDStore(channel_id_db.get()))); |
| 229 } | 230 } |
| 230 | 231 |
| 231 // Android provides a local HTTP proxy that handles all the proxying. | 232 // Android provides a local HTTP proxy that handles all the proxying. |
| 232 // Create the proxy without a resolver since we rely on this local HTTP proxy. | 233 // Create the proxy without a resolver since we rely on this local HTTP proxy. |
| 233 // TODO(sgurun) is this behavior guaranteed through SDK? | 234 // TODO(sgurun) is this behavior guaranteed through SDK? |
| 234 | 235 |
| 235 const base::CommandLine& command_line = | 236 const base::CommandLine& command_line = |
| (...skipping 100 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 336 http_auth_preferences_->set_server_whitelist( | 337 http_auth_preferences_->set_server_whitelist( |
| 337 auth_server_whitelist_.GetValue()); | 338 auth_server_whitelist_.GetValue()); |
| 338 } | 339 } |
| 339 | 340 |
| 340 void AwURLRequestContextGetter::UpdateAndroidAuthNegotiateAccountType() { | 341 void AwURLRequestContextGetter::UpdateAndroidAuthNegotiateAccountType() { |
| 341 http_auth_preferences_->set_auth_android_negotiate_account_type( | 342 http_auth_preferences_->set_auth_android_negotiate_account_type( |
| 342 auth_android_negotiate_account_type_.GetValue()); | 343 auth_android_negotiate_account_type_.GetValue()); |
| 343 } | 344 } |
| 344 | 345 |
| 345 } // namespace android_webview | 346 } // namespace android_webview |
| OLD | NEW |