| 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_COMMON_DATA_REDUCTION_PROXY_EVENT_C
REATOR_H_ | 5 #ifndef COMPONENTS_DATA_REDUCTION_PROXY_CORE_COMMON_DATA_REDUCTION_PROXY_EVENT_C
REATOR_H_ |
| 6 #define COMPONENTS_DATA_REDUCTION_PROXY_CORE_COMMON_DATA_REDUCTION_PROXY_EVENT_C
REATOR_H_ | 6 #define COMPONENTS_DATA_REDUCTION_PROXY_CORE_COMMON_DATA_REDUCTION_PROXY_EVENT_C
REATOR_H_ |
| 7 | 7 |
| 8 #include <stdint.h> | 8 #include <stdint.h> |
| 9 | 9 |
| 10 #include <string> | 10 #include <string> |
| 11 #include <vector> | 11 #include <vector> |
| 12 | 12 |
| 13 #include "base/macros.h" | 13 #include "base/macros.h" |
| 14 #include "base/threading/thread_checker.h" | 14 #include "base/threading/thread_checker.h" |
| 15 #include "components/data_reduction_proxy/core/common/data_reduction_proxy_event
_storage_delegate.h" | 15 #include "components/data_reduction_proxy/core/common/data_reduction_proxy_event
_storage_delegate.h" |
| 16 #include "components/data_reduction_proxy/core/common/data_reduction_proxy_heade
rs.h" | 16 #include "components/data_reduction_proxy/core/common/data_reduction_proxy_heade
rs.h" |
| 17 #include "net/log/net_log_event_type.h" | 17 #include "net/log/net_log_event_type.h" |
| 18 #include "net/log/net_log_parameters_callback.h" | 18 #include "net/log/net_log_parameters_callback.h" |
| 19 | 19 |
| 20 class GURL; | 20 class GURL; |
| 21 | 21 |
| 22 namespace base { | 22 namespace base { |
| 23 class TimeDelta; | 23 class TimeDelta; |
| 24 class Value; | |
| 25 } | 24 } |
| 26 | 25 |
| 27 namespace net { | 26 namespace net { |
| 28 class NetLogWithSource; | 27 class NetLogWithSource; |
| 29 class ProxyServer; | 28 class ProxyServer; |
| 30 class NetLog; | 29 class NetLog; |
| 31 } | 30 } |
| 32 | 31 |
| 33 namespace data_reduction_proxy { | 32 namespace data_reduction_proxy { |
| 34 | 33 |
| (...skipping 117 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 152 DataReductionProxyEventStorageDelegate* storage_delegate_; | 151 DataReductionProxyEventStorageDelegate* storage_delegate_; |
| 153 | 152 |
| 154 // Enforce usage on the IO thread. | 153 // Enforce usage on the IO thread. |
| 155 base::ThreadChecker thread_checker_; | 154 base::ThreadChecker thread_checker_; |
| 156 | 155 |
| 157 DISALLOW_COPY_AND_ASSIGN(DataReductionProxyEventCreator); | 156 DISALLOW_COPY_AND_ASSIGN(DataReductionProxyEventCreator); |
| 158 }; | 157 }; |
| 159 | 158 |
| 160 } // namespace data_reduction_proxy | 159 } // namespace data_reduction_proxy |
| 161 #endif // COMPONENTS_DATA_REDUCTION_PROXY_CORE_COMMON_DATA_REDUCTION_PROXY_EVEN
T_CREATOR_H_ | 160 #endif // COMPONENTS_DATA_REDUCTION_PROXY_CORE_COMMON_DATA_REDUCTION_PROXY_EVEN
T_CREATOR_H_ |
| OLD | NEW |