OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:PrefHashStoreImpl
(Results
1 - 5
of
5
) sorted by null
/external/chromium_org/chrome/browser/prefs/
pref_hash_store_impl.h
19
// Implements
PrefHashStoreImpl
by storing preference hashes in a
21
class
PrefHashStoreImpl
: public PrefHashStore {
33
// Constructs a
PrefHashStoreImpl
that calculates hashes using
38
PrefHashStoreImpl
(const std::string& seed,
42
virtual ~
PrefHashStoreImpl
();
64
DISALLOW_COPY_AND_ASSIGN(
PrefHashStoreImpl
);
pref_hash_store_impl.cc
13
class
PrefHashStoreImpl
::PrefHashStoreTransactionImpl
17
// members of its |outer|
PrefHashStoreImpl
.
18
PrefHashStoreTransactionImpl(
PrefHashStoreImpl
* outer,
57
PrefHashStoreImpl
* outer_;
66
PrefHashStoreImpl
::
PrefHashStoreImpl
(const std::string& seed,
73
PrefHashStoreImpl
::~
PrefHashStoreImpl
() {
76
void
PrefHashStoreImpl
::set_legacy_hash_store_contents(
81
scoped_ptr<PrefHashStoreTransaction>
PrefHashStoreImpl
::BeginTransaction
[
all
...]
pref_hash_store_impl_unittest.cc
34
PrefHashStoreImpl
pref_hash_store(std::string(32, 0), "device_id", true);
78
PrefHashStoreImpl
pref_hash_store2(std::string(32, 0), "device_id", true);
95
PrefHashStoreImpl
pref_hash_store3(std::string(32, 0), "device_id", true);
113
PrefHashStoreImpl
pref_hash_store(std::string(32, 0), "device_id", true);
138
PrefHashStoreImpl
pref_hash_store(std::string(32, 0), "device_id", true);
157
PrefHashStoreImpl
pref_hash_store(std::string(32, 0), "device_id", true);
168
PrefHashStoreImpl
pref_hash_store(std::string(32, 0), "device_id", true);
186
PrefHashStoreImpl
pref_hash_store(std::string(32, 0), "device_id", true);
204
PrefHashStoreImpl
pref_hash_store(std::string(32, 0), "device_id", true);
215
PrefHashStoreImpl
pref_hash_store(std::string(32, 0), "device_id", true)
[
all
...]
profile_pref_store_manager.cc
209
scoped_ptr<
PrefHashStoreImpl
> pref_hash_store_impl(
210
new
PrefHashStoreImpl
(seed_, device_id_, true));
231
return scoped_ptr<PrefHashStore>(new
PrefHashStoreImpl
(
/external/chromium_org/chrome/browser/prefs/tracked/
tracked_preferences_migration_unittest.cc
127
new
PrefHashStoreImpl
(kSeed, kDeviceId, false)),
129
new
PrefHashStoreImpl
(kSeed, kDeviceId, true)),
156
pref_hash_store.reset(new
PrefHashStoreImpl
(kSeed, kDeviceId, false));
160
pref_hash_store.reset(new
PrefHashStoreImpl
(kSeed, kDeviceId, true));
Completed in 597 milliseconds