| OLD | NEW |
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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_VARIATIONS_SERVICE_VARIATIONS_SERVICE_H_ | 5 #ifndef COMPONENTS_VARIATIONS_SERVICE_VARIATIONS_SERVICE_H_ |
| 6 #define COMPONENTS_VARIATIONS_SERVICE_VARIATIONS_SERVICE_H_ | 6 #define COMPONENTS_VARIATIONS_SERVICE_VARIATIONS_SERVICE_H_ |
| 7 | 7 |
| 8 #include <string> | 8 #include <string> |
| 9 | 9 |
| 10 #include "base/compiler_specific.h" | 10 #include "base/compiler_specific.h" |
| 11 #include "base/gtest_prod_util.h" | 11 #include "base/gtest_prod_util.h" |
| 12 #include "base/macros.h" |
| 12 #include "base/memory/scoped_ptr.h" | 13 #include "base/memory/scoped_ptr.h" |
| 13 #include "base/memory/weak_ptr.h" | 14 #include "base/memory/weak_ptr.h" |
| 14 #include "base/metrics/field_trial.h" | 15 #include "base/metrics/field_trial.h" |
| 15 #include "base/observer_list.h" | 16 #include "base/observer_list.h" |
| 16 #include "base/threading/thread_checker.h" | 17 #include "base/threading/thread_checker.h" |
| 17 #include "base/time/time.h" | 18 #include "base/time/time.h" |
| 18 #include "components/variations/service/ui_string_overrider.h" | 19 #include "components/variations/service/ui_string_overrider.h" |
| 19 #include "components/variations/service/variations_service_client.h" | 20 #include "components/variations/service/variations_service_client.h" |
| 20 #include "components/variations/variations_request_scheduler.h" | 21 #include "components/variations/variations_request_scheduler.h" |
| 21 #include "components/variations/variations_seed_simulator.h" | 22 #include "components/variations/variations_seed_simulator.h" |
| (...skipping 290 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 312 base::ThreadChecker thread_checker_; | 313 base::ThreadChecker thread_checker_; |
| 313 | 314 |
| 314 base::WeakPtrFactory<VariationsService> weak_ptr_factory_; | 315 base::WeakPtrFactory<VariationsService> weak_ptr_factory_; |
| 315 | 316 |
| 316 DISALLOW_COPY_AND_ASSIGN(VariationsService); | 317 DISALLOW_COPY_AND_ASSIGN(VariationsService); |
| 317 }; | 318 }; |
| 318 | 319 |
| 319 } // namespace variations | 320 } // namespace variations |
| 320 | 321 |
| 321 #endif // COMPONENTS_VARIATIONS_SERVICE_VARIATIONS_SERVICE_H_ | 322 #endif // COMPONENTS_VARIATIONS_SERVICE_VARIATIONS_SERVICE_H_ |
| OLD | NEW |