| 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_SERVIC
E_H_ | 5 #ifndef COMPONENTS_DATA_REDUCTION_PROXY_CORE_BROWSER_DATA_REDUCTION_PROXY_SERVIC
E_H_ |
| 6 #define COMPONENTS_DATA_REDUCTION_PROXY_CORE_BROWSER_DATA_REDUCTION_PROXY_SERVIC
E_H_ | 6 #define COMPONENTS_DATA_REDUCTION_PROXY_CORE_BROWSER_DATA_REDUCTION_PROXY_SERVIC
E_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 | 12 |
| 13 #include "base/callback.h" | 13 #include "base/callback.h" |
| 14 #include "base/gtest_prod_util.h" | 14 #include "base/gtest_prod_util.h" |
| 15 #include "base/macros.h" | 15 #include "base/macros.h" |
| 16 #include "base/memory/ref_counted.h" | 16 #include "base/memory/ref_counted.h" |
| 17 #include "base/memory/weak_ptr.h" | 17 #include "base/memory/weak_ptr.h" |
| 18 #include "base/observer_list.h" | 18 #include "base/observer_list.h" |
| 19 #include "base/threading/non_thread_safe.h" | 19 #include "base/threading/non_thread_safe.h" |
| 20 #include "components/data_reduction_proxy/core/browser/data_reduction_proxy_metr
ics.h" | 20 #include "components/data_reduction_proxy/core/browser/data_reduction_proxy_metr
ics.h" |
| 21 #include "components/data_reduction_proxy/core/browser/db_data_owner.h" | 21 #include "components/data_reduction_proxy/core/browser/db_data_owner.h" |
| 22 #include "components/data_reduction_proxy/core/common/data_reduction_proxy_event
_storage_delegate.h" | 22 #include "components/data_reduction_proxy/core/common/data_reduction_proxy_event
_storage_delegate.h" |
| 23 | 23 |
| 24 class GURL; | |
| 25 class PrefService; | 24 class PrefService; |
| 26 | 25 |
| 27 namespace base { | 26 namespace base { |
| 28 class SequencedTaskRunner; | 27 class SequencedTaskRunner; |
| 29 class SingleThreadTaskRunner; | 28 class SingleThreadTaskRunner; |
| 30 class TimeDelta; | 29 class TimeDelta; |
| 31 class Value; | 30 class Value; |
| 32 } | 31 } |
| 33 | 32 |
| 34 namespace net { | 33 namespace net { |
| (...skipping 166 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 201 bool initialized_; | 200 bool initialized_; |
| 202 | 201 |
| 203 base::WeakPtrFactory<DataReductionProxyService> weak_factory_; | 202 base::WeakPtrFactory<DataReductionProxyService> weak_factory_; |
| 204 | 203 |
| 205 DISALLOW_COPY_AND_ASSIGN(DataReductionProxyService); | 204 DISALLOW_COPY_AND_ASSIGN(DataReductionProxyService); |
| 206 }; | 205 }; |
| 207 | 206 |
| 208 } // namespace data_reduction_proxy | 207 } // namespace data_reduction_proxy |
| 209 | 208 |
| 210 #endif // COMPONENTS_DATA_REDUCTION_PROXY_CORE_BROWSER_DATA_REDUCTION_PROXY_SER
VICE_H_ | 209 #endif // COMPONENTS_DATA_REDUCTION_PROXY_CORE_BROWSER_DATA_REDUCTION_PROXY_SER
VICE_H_ |
| OLD | NEW |