| Index: trunk/src/chrome/browser/metrics/variations/variations_seed_store.h
|
| ===================================================================
|
| --- trunk/src/chrome/browser/metrics/variations/variations_seed_store.h (revision 285674)
|
| +++ trunk/src/chrome/browser/metrics/variations/variations_seed_store.h (working copy)
|
| @@ -14,12 +14,10 @@
|
| class PrefService;
|
| class PrefRegistrySimple;
|
|
|
| -namespace variations {
|
| -class VariationsSeed;
|
| -}
|
| -
|
| namespace chrome_variations {
|
|
|
| +class VariationsSeed;
|
| +
|
| // VariationsSeedStore is a helper class for reading and writing the variations
|
| // seed from Local State.
|
| class VariationsSeedStore {
|
| @@ -30,7 +28,7 @@
|
| // Loads the variations seed data from local state into |seed|. If there is a
|
| // problem with loading, the pref value is cleared and false is returned. If
|
| // successful, |seed| will contain the loaded data and true is returned.
|
| - bool LoadSeed(variations::VariationsSeed* seed);
|
| + bool LoadSeed(VariationsSeed* seed);
|
|
|
| // Stores the given seed data (serialized protobuf data) to local state, along
|
| // with a base64-encoded digital signature for seed and the date when it was
|
| @@ -41,7 +39,7 @@
|
| bool StoreSeedData(const std::string& seed_data,
|
| const std::string& base64_seed_signature,
|
| const base::Time& date_fetched,
|
| - variations::VariationsSeed* parsed_seed);
|
| + VariationsSeed* parsed_seed);
|
|
|
| // Updates |kVariationsSeedDate| and logs when previous date was from a
|
| // different day.
|
|
|