Home
last modified time | relevance | path

Searched refs:SuggestionsStore (Results 1 – 7 of 7) sorted by relevance

/external/chromium_org/chrome/browser/search/suggestions/
Dsuggestions_store.cc16 SuggestionsStore::SuggestionsStore(PrefService* profile_prefs) in SuggestionsStore() function in suggestions::SuggestionsStore
21 SuggestionsStore::~SuggestionsStore() {} in ~SuggestionsStore()
23 bool SuggestionsStore::LoadSuggestions(SuggestionsProfile* suggestions) { in LoadSuggestions()
46 bool SuggestionsStore::StoreSuggestions(const SuggestionsProfile& suggestions) { in StoreSuggestions()
57 void SuggestionsStore::ClearSuggestions() { in ClearSuggestions()
62 void SuggestionsStore::RegisterProfilePrefs( in RegisterProfilePrefs()
Dsuggestions_store.h21 class SuggestionsStore {
23 explicit SuggestionsStore(PrefService* profile_prefs);
24 virtual ~SuggestionsStore();
44 SuggestionsStore() {} in SuggestionsStore() function
50 DISALLOW_COPY_AND_ASSIGN(SuggestionsStore);
Dsuggestions_service.h33 class SuggestionsStore; variable
49 scoped_ptr<SuggestionsStore> suggestions_store);
107 scoped_ptr<SuggestionsStore> suggestions_store_;
Dsuggestions_service_factory.cc48 scoped_ptr<SuggestionsStore> suggestions_store( in BuildServiceInstanceFor()
49 new SuggestionsStore(the_profile->GetPrefs())); in BuildServiceInstanceFor()
Dsuggestions_store_unittest.cc43 SuggestionsStore::RegisterProfilePrefs(prefs.registry()); in TEST()
44 SuggestionsStore suggestions_store(&prefs); in TEST()
Dsuggestions_service.cc87 Profile* profile, scoped_ptr<SuggestionsStore> suggestions_store) in SuggestionsService()
192 SuggestionsStore::RegisterProfilePrefs(registry); in RegisterProfilePrefs()
Dsuggestions_service_unittest.cc86 class MockSuggestionsStore : public suggestions::SuggestionsStore {
161 profile_.get(), scoped_ptr<SuggestionsStore>(mock_suggestions_store_)); in CreateSuggestionsServiceWithMockStore()