| OLD | NEW |
| 1 // Copyright 2015 The Chromium Authors. All rights reserved. | 1 // Copyright 2015 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_DATA_REDUCTION_PROXY_CORE_BROWSER_DATA_REDUCTION_PROXY_CONFIG
_H_ | 5 #ifndef COMPONENTS_DATA_REDUCTION_PROXY_CORE_BROWSER_DATA_REDUCTION_PROXY_CONFIG
_H_ |
| 6 #define COMPONENTS_DATA_REDUCTION_PROXY_CORE_BROWSER_DATA_REDUCTION_PROXY_CONFIG
_H_ | 6 #define COMPONENTS_DATA_REDUCTION_PROXY_CORE_BROWSER_DATA_REDUCTION_PROXY_CONFIG
_H_ |
| 7 | 7 |
| 8 #include <stdint.h> | 8 #include <stdint.h> |
| 9 | 9 |
| 10 #include <memory> | 10 #include <memory> |
| 11 #include <string> | 11 #include <string> |
| 12 #include <vector> | 12 #include <vector> |
| 13 | 13 |
| 14 #include "base/callback.h" | 14 #include "base/callback.h" |
| 15 #include "base/gtest_prod_util.h" | 15 #include "base/gtest_prod_util.h" |
| 16 #include "base/macros.h" | 16 #include "base/macros.h" |
| 17 #include "base/memory/ref_counted.h" | 17 #include "base/memory/ref_counted.h" |
| 18 #include "base/memory/scoped_ptr.h" | |
| 19 #include "base/memory/weak_ptr.h" | 18 #include "base/memory/weak_ptr.h" |
| 20 #include "base/threading/thread_checker.h" | 19 #include "base/threading/thread_checker.h" |
| 21 #include "base/time/time.h" | 20 #include "base/time/time.h" |
| 22 #include "net/base/net_errors.h" | 21 #include "net/base/net_errors.h" |
| 23 #include "net/base/network_change_notifier.h" | 22 #include "net/base/network_change_notifier.h" |
| 24 #include "net/base/network_interfaces.h" | 23 #include "net/base/network_interfaces.h" |
| 25 #include "net/log/net_log.h" | 24 #include "net/log/net_log.h" |
| 26 #include "net/proxy/proxy_config.h" | 25 #include "net/proxy/proxy_config.h" |
| 27 #include "net/proxy/proxy_retry_info.h" | 26 #include "net/proxy/proxy_retry_info.h" |
| 28 | 27 |
| (...skipping 355 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 384 std::vector<base::TimeDelta> lofi_accuracy_recording_intervals_; | 383 std::vector<base::TimeDelta> lofi_accuracy_recording_intervals_; |
| 385 | 384 |
| 386 base::WeakPtrFactory<DataReductionProxyConfig> weak_factory_; | 385 base::WeakPtrFactory<DataReductionProxyConfig> weak_factory_; |
| 387 | 386 |
| 388 DISALLOW_COPY_AND_ASSIGN(DataReductionProxyConfig); | 387 DISALLOW_COPY_AND_ASSIGN(DataReductionProxyConfig); |
| 389 }; | 388 }; |
| 390 | 389 |
| 391 } // namespace data_reduction_proxy | 390 } // namespace data_reduction_proxy |
| 392 | 391 |
| 393 #endif // COMPONENTS_DATA_REDUCTION_PROXY_CORE_BROWSER_DATA_REDUCTION_PROXY_CON
FIG_H_ | 392 #endif // COMPONENTS_DATA_REDUCTION_PROXY_CORE_BROWSER_DATA_REDUCTION_PROXY_CON
FIG_H_ |
| OLD | NEW |