OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:PrefHashCalculator
(Results
1 - 5
of
5
) sorted by null
/external/chromium_org/chrome/browser/prefs/
pref_hash_calculator.h
19
class
PrefHashCalculator
{
33
// Constructs a
PrefHashCalculator
using |seed| and |device_id|. The same
36
PrefHashCalculator
(const std::string& seed, const std::string& device_id);
41
PrefHashCalculator
(
46
~
PrefHashCalculator
();
79
DISALLOW_COPY_AND_ASSIGN(
PrefHashCalculator
);
pref_hash_calculator_unittest.cc
27
PrefHashCalculator
calc1("seed1", "deviceid");
28
PrefHashCalculator
calc1_dup("seed1", "deviceid");
29
PrefHashCalculator
calc2("seed2", "deviceid");
30
PrefHashCalculator
calc3("seed1", "deviceid2");
35
ASSERT_EQ(
PrefHashCalculator
::VALID,
44
ASSERT_EQ(
PrefHashCalculator
::INVALID,
131
EXPECT_EQ(
PrefHashCalculator
::VALID,
132
PrefHashCalculator
(kSeed, kDeviceId).Validate(
137
EXPECT_EQ(
PrefHashCalculator
::VALID,
138
PrefHashCalculator
(kSeed, kDeviceId).Validate
[
all
...]
pref_hash_calculator.cc
95
PrefHashCalculator
::
PrefHashCalculator
(const std::string& seed,
102
PrefHashCalculator
::
PrefHashCalculator
(
111
PrefHashCalculator
::~
PrefHashCalculator
() {}
113
std::string
PrefHashCalculator
::Calculate(const std::string& path,
119
PrefHashCalculator
::ValidationResult
PrefHashCalculator
::Validate(
139
std::string
PrefHashCalculator
::RetrieveLegacyDeviceId() const
[
all
...]
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_WEAK_LEGACY:
147
case
PrefHashCalculator
::VALID_SECURE_LEGACY:
149
case
PrefHashCalculator
::INVALID:
152
NOTREACHED() << "Unexpected
PrefHashCalculator
::ValidationResult: "
202
case
PrefHashCalculator
::VALID:
217
case
PrefHashCalculator
::INVALID:
Completed in 49 milliseconds