| 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 #include "chrome/browser/prefs/profile_pref_store_manager.h" | 5 #include "chrome/browser/prefs/profile_pref_store_manager.h" |
| 6 | 6 |
| 7 #include <vector> | 7 #include <vector> |
| 8 | 8 |
| 9 #include "base/compiler_specific.h" | 9 #include "base/compiler_specific.h" |
| 10 #include "base/files/file_enumerator.h" | 10 #include "base/files/file_enumerator.h" |
| 11 #include "base/files/file_util.h" | 11 #include "base/files/file_util.h" |
| 12 #include "base/files/scoped_temp_dir.h" | 12 #include "base/files/scoped_temp_dir.h" |
| 13 #include "base/memory/ref_counted.h" | 13 #include "base/memory/ref_counted.h" |
| 14 #include "base/memory/scoped_ptr.h" | 14 #include "base/memory/scoped_ptr.h" |
| 15 #include "base/prefs/json_pref_store.h" | 15 #include "base/prefs/json_pref_store.h" |
| 16 #include "base/prefs/persistent_pref_store.h" | 16 #include "base/prefs/persistent_pref_store.h" |
| 17 #include "base/prefs/pref_service.h" | 17 #include "base/prefs/pref_service.h" |
| 18 #include "base/prefs/pref_service_factory.h" | 18 #include "base/prefs/pref_service_factory.h" |
| 19 #include "base/prefs/pref_store.h" | 19 #include "base/prefs/pref_store.h" |
| 20 #include "base/prefs/testing_pref_service.h" | 20 #include "base/prefs/testing_pref_service.h" |
| 21 #include "base/run_loop.h" | 21 #include "base/run_loop.h" |
| 22 #include "base/strings/string_util.h" | 22 #include "base/strings/string_util.h" |
| 23 #include "base/values.h" | 23 #include "base/values.h" |
| 24 #include "chrome/browser/prefs/tracked/mock_validation_delegate.h" | |
| 25 #include "chrome/browser/prefs/tracked/pref_hash_filter.h" | |
| 26 #include "chrome/browser/prefs/tracked/pref_service_hash_store_contents.h" | |
| 27 #include "chrome/common/pref_names.h" | |
| 28 #include "components/pref_registry/pref_registry_syncable.h" | 24 #include "components/pref_registry/pref_registry_syncable.h" |
| 25 #include "components/prefs_tracker/mock_validation_delegate.h" |
| 26 #include "components/prefs_tracker/pref_hash_filter.h" |
| 27 #include "components/prefs_tracker/pref_names.h" |
| 28 #include "components/prefs_tracker/pref_service_hash_store_contents.h" |
| 29 #include "testing/gtest/include/gtest/gtest.h" | 29 #include "testing/gtest/include/gtest/gtest.h" |
| 30 | 30 |
| 31 namespace { | 31 namespace { |
| 32 | 32 |
| 33 class FirstEqualsPredicate { | 33 class FirstEqualsPredicate { |
| 34 public: | 34 public: |
| 35 explicit FirstEqualsPredicate(const std::string& expected) | 35 explicit FirstEqualsPredicate(const std::string& expected) |
| 36 : expected_(expected) {} | 36 : expected_(expected) {} |
| 37 bool operator()(const std::pair<std::string, base::Value*>& pair) { | 37 bool operator()(const std::pair<std::string, base::Value*>& pair) { |
| 38 return pair.first == expected_; | 38 return pair.first == expected_; |
| (...skipping 539 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 578 | 578 |
| 579 // Trigger the logic that migrates it back to the unprotected preferences | 579 // Trigger the logic that migrates it back to the unprotected preferences |
| 580 // file. | 580 // file. |
| 581 pref_store_->SetValue(kProtectedAtomic, | 581 pref_store_->SetValue(kProtectedAtomic, |
| 582 make_scoped_ptr(new base::StringValue(kGoodbyeWorld)), | 582 make_scoped_ptr(new base::StringValue(kGoodbyeWorld)), |
| 583 WriteablePrefStore::DEFAULT_PREF_WRITE_FLAGS); | 583 WriteablePrefStore::DEFAULT_PREF_WRITE_FLAGS); |
| 584 LoadExistingPrefs(); | 584 LoadExistingPrefs(); |
| 585 ExpectStringValueEquals(kProtectedAtomic, kGoodbyeWorld); | 585 ExpectStringValueEquals(kProtectedAtomic, kGoodbyeWorld); |
| 586 VerifyResetRecorded(false); | 586 VerifyResetRecorded(false); |
| 587 } | 587 } |
| OLD | NEW |