Home | History | Annotate | Download | only in suggestions

Lines Matching refs:suggestions

5 #include "chrome/browser/search/suggestions/suggestions_store.h"
14 namespace suggestions {
23 bool SuggestionsStore::LoadSuggestions(SuggestionsProfile* suggestions) {
24 DCHECK(suggestions);
29 suggestions->Clear();
36 !suggestions->ParseFromString(suggestions_data)) {
37 VLOG(1) << "Suggestions data in profile pref is corrupt, clearing it.";
38 suggestions->Clear();
46 bool SuggestionsStore::StoreSuggestions(const SuggestionsProfile& suggestions) {
48 if (!suggestions.SerializeToString(&suggestions_data)) return false;
69 } // namespace suggestions