OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:SuggestionsStore
(Results
1 - 7
of
7
) sorted by null
/external/chromium_org/components/suggestions/
suggestions_store.h
21
class
SuggestionsStore
{
23
explicit
SuggestionsStore
(PrefService* profile_prefs);
24
virtual ~
SuggestionsStore
();
39
// Register
SuggestionsStore
related prefs in the Profile prefs.
44
SuggestionsStore
() {}
50
DISALLOW_COPY_AND_ASSIGN(
SuggestionsStore
);
suggestions_store.cc
17
SuggestionsStore
::
SuggestionsStore
(PrefService* profile_prefs)
22
SuggestionsStore
::~
SuggestionsStore
() {}
24
bool
SuggestionsStore
::LoadSuggestions(SuggestionsProfile* suggestions) {
61
void
SuggestionsStore
::FilterExpiredSuggestions(
76
bool
SuggestionsStore
::StoreSuggestions(const SuggestionsProfile& suggestions) {
87
void
SuggestionsStore
::ClearSuggestions() {
92
void
SuggestionsStore
::RegisterProfilePrefs(
suggestions_service.h
38
class
SuggestionsStore
;
57
scoped_ptr<
SuggestionsStore
> suggestions_store,
157
scoped_ptr<
SuggestionsStore
> suggestions_store_;
suggestions_store_unittest.cc
78
SuggestionsStore
::RegisterProfilePrefs(pref_service_->registry());
79
suggestions_store_.reset(new
SuggestionsStore
(pref_service_.get()));
84
scoped_ptr<
SuggestionsStore
> suggestions_store_;
suggestions_service.cc
122
scoped_ptr<
SuggestionsStore
> suggestions_store,
236
SuggestionsStore
::RegisterProfilePrefs(registry);
suggestions_service_unittest.cc
116
class MockSuggestionsStore : public suggestions::
SuggestionsStore
{
204
//
SuggestionsStore
in |mock_suggestions_store_|.
211
scoped_ptr<
SuggestionsStore
>(mock_suggestions_store_),
231
// Set up expectations on the
SuggestionsStore
. The number depends on
318
// Set up expectations on the
SuggestionsStore
.
357
// Set up expectations on the
SuggestionsStore
.
386
// Set up expectations on the
SuggestionsStore
.
449
// Set up expectations on the
SuggestionsStore
.
/external/chromium_org/chrome/browser/search/suggestions/
suggestions_service_factory.cc
63
scoped_ptr<
SuggestionsStore
> suggestions_store(
64
new
SuggestionsStore
(the_profile->GetPrefs()));
Completed in 57 milliseconds