| 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 "net/ocsp/nss_ocsp.h" | 5 #include "net/ocsp/nss_ocsp.h" |
| 6 | 6 |
| 7 #include <certt.h> | 7 #include <certt.h> |
| 8 #include <certdb.h> | 8 #include <certdb.h> |
| 9 #include <ocsp.h> | 9 #include <ocsp.h> |
| 10 #include <nspr.h> | 10 #include <nspr.h> |
| (...skipping 11 matching lines...) Expand all Loading... |
| 22 #include "base/logging.h" | 22 #include "base/logging.h" |
| 23 #include "base/message_loop.h" | 23 #include "base/message_loop.h" |
| 24 #include "base/metrics/histogram.h" | 24 #include "base/metrics/histogram.h" |
| 25 #include "base/stl_util.h" | 25 #include "base/stl_util.h" |
| 26 #include "base/strings/string_util.h" | 26 #include "base/strings/string_util.h" |
| 27 #include "base/strings/stringprintf.h" | 27 #include "base/strings/stringprintf.h" |
| 28 #include "base/synchronization/condition_variable.h" | 28 #include "base/synchronization/condition_variable.h" |
| 29 #include "base/synchronization/lock.h" | 29 #include "base/synchronization/lock.h" |
| 30 #include "base/threading/thread_checker.h" | 30 #include "base/threading/thread_checker.h" |
| 31 #include "base/time/time.h" | 31 #include "base/time/time.h" |
| 32 #include "googleurl/src/gurl.h" | |
| 33 #include "net/base/host_port_pair.h" | 32 #include "net/base/host_port_pair.h" |
| 34 #include "net/base/io_buffer.h" | 33 #include "net/base/io_buffer.h" |
| 35 #include "net/base/load_flags.h" | 34 #include "net/base/load_flags.h" |
| 36 #include "net/base/upload_bytes_element_reader.h" | 35 #include "net/base/upload_bytes_element_reader.h" |
| 37 #include "net/base/upload_data_stream.h" | 36 #include "net/base/upload_data_stream.h" |
| 38 #include "net/http/http_request_headers.h" | 37 #include "net/http/http_request_headers.h" |
| 39 #include "net/http/http_response_headers.h" | 38 #include "net/http/http_response_headers.h" |
| 40 #include "net/url_request/url_request.h" | 39 #include "net/url_request/url_request.h" |
| 41 #include "net/url_request/url_request_context.h" | 40 #include "net/url_request/url_request_context.h" |
| 41 #include "url/gurl.h" |
| 42 | 42 |
| 43 namespace net { | 43 namespace net { |
| 44 | 44 |
| 45 namespace { | 45 namespace { |
| 46 | 46 |
| 47 // Protects |g_request_context|. | 47 // Protects |g_request_context|. |
| 48 pthread_mutex_t g_request_context_lock = PTHREAD_MUTEX_INITIALIZER; | 48 pthread_mutex_t g_request_context_lock = PTHREAD_MUTEX_INITIALIZER; |
| 49 URLRequestContext* g_request_context = NULL; | 49 URLRequestContext* g_request_context = NULL; |
| 50 | 50 |
| 51 // The default timeout for network fetches in NSS is 60 seconds. Choose a | 51 // The default timeout for network fetches in NSS is 60 seconds. Choose a |
| (...skipping 913 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 965 void SetURLRequestContextForNSSHttpIO(URLRequestContext* request_context) { | 965 void SetURLRequestContextForNSSHttpIO(URLRequestContext* request_context) { |
| 966 pthread_mutex_lock(&g_request_context_lock); | 966 pthread_mutex_lock(&g_request_context_lock); |
| 967 if (request_context) { | 967 if (request_context) { |
| 968 DCHECK(!g_request_context); | 968 DCHECK(!g_request_context); |
| 969 } | 969 } |
| 970 g_request_context = request_context; | 970 g_request_context = request_context; |
| 971 pthread_mutex_unlock(&g_request_context_lock); | 971 pthread_mutex_unlock(&g_request_context_lock); |
| 972 } | 972 } |
| 973 | 973 |
| 974 } // namespace net | 974 } // namespace net |
| OLD | NEW |