| 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> |
| 9 |
| 8 #include <map> | 10 #include <map> |
| 9 | 11 |
| 12 #include "base/macros.h" |
| 10 #include "base/memory/ref_counted.h" | 13 #include "base/memory/ref_counted.h" |
| 11 #include "base/memory/scoped_ptr.h" | 14 #include "base/memory/scoped_ptr.h" |
| 12 #include "base/memory/weak_ptr.h" | 15 #include "base/memory/weak_ptr.h" |
| 13 #include "base/single_thread_task_runner.h" | 16 #include "base/single_thread_task_runner.h" |
| 14 #include "base/time/time.h" | 17 #include "base/time/time.h" |
| 15 #include "components/domain_reliability/beacon.h" | 18 #include "components/domain_reliability/beacon.h" |
| 16 #include "components/domain_reliability/clear_mode.h" | 19 #include "components/domain_reliability/clear_mode.h" |
| 17 #include "components/domain_reliability/config.h" | 20 #include "components/domain_reliability/config.h" |
| 18 #include "components/domain_reliability/context.h" | 21 #include "components/domain_reliability/context.h" |
| 19 #include "components/domain_reliability/context_manager.h" | 22 #include "components/domain_reliability/context_manager.h" |
| (...skipping 159 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 179 bool discard_uploads_set_; | 182 bool discard_uploads_set_; |
| 180 | 183 |
| 181 base::WeakPtrFactory<DomainReliabilityMonitor> weak_factory_; | 184 base::WeakPtrFactory<DomainReliabilityMonitor> weak_factory_; |
| 182 | 185 |
| 183 DISALLOW_COPY_AND_ASSIGN(DomainReliabilityMonitor); | 186 DISALLOW_COPY_AND_ASSIGN(DomainReliabilityMonitor); |
| 184 }; | 187 }; |
| 185 | 188 |
| 186 } // namespace domain_reliability | 189 } // namespace domain_reliability |
| 187 | 190 |
| 188 #endif // COMPONENTS_DOMAIN_RELIABILITY_MONITOR_H_ | 191 #endif // COMPONENTS_DOMAIN_RELIABILITY_MONITOR_H_ |
| OLD | NEW |