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 CHROME_BROWSER_METRICS_VARIATIONS_VARIATIONS_SEED_STORE_H_ | 5 #ifndef COMPONENTS_VARIATIONS_VARIATIONS_SEED_STORE_H_ |
6 #define CHROME_BROWSER_METRICS_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/time/time.h" | 12 #include "base/time/time.h" |
13 | 13 |
14 class PrefService; | 14 class PrefService; |
15 class PrefRegistrySimple; | 15 class PrefRegistrySimple; |
16 | 16 |
(...skipping 109 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
126 bool seed_has_country_code_; | 126 bool seed_has_country_code_; |
127 | 127 |
128 // Keeps track of an invalid signature. | 128 // Keeps track of an invalid signature. |
129 std::string invalid_base64_signature_; | 129 std::string invalid_base64_signature_; |
130 | 130 |
131 DISALLOW_COPY_AND_ASSIGN(VariationsSeedStore); | 131 DISALLOW_COPY_AND_ASSIGN(VariationsSeedStore); |
132 }; | 132 }; |
133 | 133 |
134 } // namespace chrome_variations | 134 } // namespace chrome_variations |
135 | 135 |
136 #endif // CHROME_BROWSER_METRICS_VARIATIONS_VARIATIONS_SEED_STORE_H_ | 136 #endif // COMPONENTS_VARIATIONS_VARIATIONS_SEED_STORE_H_ |
OLD | NEW |