| 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_VARIATIONS_VARIATIONS_SEED_STORE_H_ | 5 #ifndef COMPONENTS_VARIATIONS_VARIATIONS_SEED_STORE_H_ |
| 6 #define COMPONENTS_VARIATIONS_VARIATIONS_SEED_STORE_H_ | 6 #define COMPONENTS_VARIATIONS_VARIATIONS_SEED_STORE_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/time/time.h" | 13 #include "base/time/time.h" |
| 14 #include "build/build_config.h" |
| 13 | 15 |
| 14 class PrefService; | 16 class PrefService; |
| 15 class PrefRegistrySimple; | 17 class PrefRegistrySimple; |
| 16 | 18 |
| 17 namespace variations { | 19 namespace variations { |
| 18 class VariationsSeed; | 20 class VariationsSeed; |
| 19 } | 21 } |
| 20 | 22 |
| 21 namespace variations { | 23 namespace variations { |
| 22 | 24 |
| (...skipping 116 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 139 | 141 |
| 140 // Keeps track of an invalid signature. | 142 // Keeps track of an invalid signature. |
| 141 std::string invalid_base64_signature_; | 143 std::string invalid_base64_signature_; |
| 142 | 144 |
| 143 DISALLOW_COPY_AND_ASSIGN(VariationsSeedStore); | 145 DISALLOW_COPY_AND_ASSIGN(VariationsSeedStore); |
| 144 }; | 146 }; |
| 145 | 147 |
| 146 } // namespace variations | 148 } // namespace variations |
| 147 | 149 |
| 148 #endif // COMPONENTS_VARIATIONS_VARIATIONS_SEED_STORE_H_ | 150 #endif // COMPONENTS_VARIATIONS_VARIATIONS_SEED_STORE_H_ |
| OLD | NEW |