HomeSort by relevance Sort by last modified time
    Searched refs:PrefHashCalculator (Results 1 - 5 of 5) sorted by null

  /external/chromium_org/chrome/browser/prefs/
pref_hash_calculator.h 17 class PrefHashCalculator {
26 // Constructs a PrefHashCalculator using |seed| and |device_id|. The same
29 PrefHashCalculator(const std::string& seed, const std::string& device_id);
31 ~PrefHashCalculator();
49 DISALLOW_COPY_AND_ASSIGN(PrefHashCalculator);
pref_hash_calculator_unittest.cc 25 PrefHashCalculator calc1("seed1", "deviceid");
26 PrefHashCalculator calc1_dup("seed1", "deviceid");
27 PrefHashCalculator calc2("seed2", "deviceid");
28 PrefHashCalculator calc3("seed1", "deviceid2");
33 ASSERT_EQ(PrefHashCalculator::VALID,
42 ASSERT_EQ(PrefHashCalculator::INVALID,
128 EXPECT_EQ(PrefHashCalculator::VALID,
129 PrefHashCalculator(kSeed, kDeviceId).Validate(
134 EXPECT_EQ(PrefHashCalculator::VALID,
135 PrefHashCalculator(kSeed, kDeviceId).Validate
    [all...]
pref_hash_calculator.cc 95 PrefHashCalculator::PrefHashCalculator(const std::string& seed,
101 PrefHashCalculator::~PrefHashCalculator() {}
103 std::string PrefHashCalculator::Calculate(const std::string& path,
109 PrefHashCalculator::ValidationResult PrefHashCalculator::Validate(
pref_hash_store_impl.h 60 const PrefHashCalculator pref_hash_calculator_;
pref_hash_store_impl.cc 110 PrefHashCalculator::VALID;
140 PrefHashCalculator::ValidationResult validation_result =
143 case PrefHashCalculator::VALID:
145 case PrefHashCalculator::VALID_SECURE_LEGACY:
147 case PrefHashCalculator::INVALID:
150 NOTREACHED() << "Unexpected PrefHashCalculator::ValidationResult: "
200 case PrefHashCalculator::VALID:
208 case PrefHashCalculator::INVALID:

Completed in 712 milliseconds