| OLD | NEW |
| 1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 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 #ifndef COMPONENTS_DOMAIN_RELIABILITY_MONITOR_H_ | 5 #ifndef COMPONENTS_DOMAIN_RELIABILITY_MONITOR_H_ |
| 6 #define COMPONENTS_DOMAIN_RELIABILITY_MONITOR_H_ | 6 #define COMPONENTS_DOMAIN_RELIABILITY_MONITOR_H_ |
| 7 | 7 |
| 8 #include <stddef.h> | 8 #include <stddef.h> |
| 9 | 9 |
| 10 #include <map> | 10 #include <map> |
| (...skipping 16 matching lines...) Expand all Loading... |
| 27 #include "components/domain_reliability/util.h" | 27 #include "components/domain_reliability/util.h" |
| 28 #include "net/base/ip_endpoint.h" | 28 #include "net/base/ip_endpoint.h" |
| 29 #include "net/base/load_timing_info.h" | 29 #include "net/base/load_timing_info.h" |
| 30 #include "net/base/net_error_details.h" | 30 #include "net/base/net_error_details.h" |
| 31 #include "net/base/network_change_notifier.h" | 31 #include "net/base/network_change_notifier.h" |
| 32 #include "net/http/http_response_info.h" | 32 #include "net/http/http_response_info.h" |
| 33 #include "net/socket/connection_attempts.h" | 33 #include "net/socket/connection_attempts.h" |
| 34 #include "net/url_request/url_request_status.h" | 34 #include "net/url_request/url_request_status.h" |
| 35 | 35 |
| 36 namespace base { | 36 namespace base { |
| 37 class ThreadChecker; | |
| 38 class Value; | 37 class Value; |
| 39 } // namespace base | 38 } // namespace base |
| 40 | 39 |
| 41 namespace net { | 40 namespace net { |
| 42 class URLRequest; | 41 class URLRequest; |
| 43 class URLRequestContext; | 42 class URLRequestContext; |
| 44 class URLRequestContextGetter; | 43 class URLRequestContextGetter; |
| 45 } // namespace net | 44 } // namespace net |
| 46 | 45 |
| 47 namespace domain_reliability { | 46 namespace domain_reliability { |
| (...skipping 141 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 189 bool discard_uploads_set_; | 188 bool discard_uploads_set_; |
| 190 | 189 |
| 191 base::WeakPtrFactory<DomainReliabilityMonitor> weak_factory_; | 190 base::WeakPtrFactory<DomainReliabilityMonitor> weak_factory_; |
| 192 | 191 |
| 193 DISALLOW_COPY_AND_ASSIGN(DomainReliabilityMonitor); | 192 DISALLOW_COPY_AND_ASSIGN(DomainReliabilityMonitor); |
| 194 }; | 193 }; |
| 195 | 194 |
| 196 } // namespace domain_reliability | 195 } // namespace domain_reliability |
| 197 | 196 |
| 198 #endif // COMPONENTS_DOMAIN_RELIABILITY_MONITOR_H_ | 197 #endif // COMPONENTS_DOMAIN_RELIABILITY_MONITOR_H_ |
| OLD | NEW |