Home | History | Annotate | Download | only in ntp

Lines Matching refs:combiner_

139       : combiner_(NULL),
152 combiner_->OnItemsReady();
191 DCHECK(!combiner_);
192 combiner_ = combiner;
196 SuggestionsCombiner* combiner_;
217 SuggestionsCombiner* combiner_;
220 delete combiner_;
221 combiner_ = new SuggestionsCombiner(suggestions_handler_, profile_);
228 combiner_ = new SuggestionsCombiner(suggestions_handler_, profile_);
232 delete combiner_;
241 combiner_->FetchItems(NULL);
242 EXPECT_EQ(0UL, combiner_->GetPageValues()->GetSize());
246 combiner_->AddSource(new SuggestionsSourceStub(1, "sourceA", 10));
247 combiner_->AddSource(new SuggestionsSourceStub(1, "sourceB", 10));
248 combiner_->FetchItems(NULL);
249 EXPECT_EQ(0UL, combiner_->GetPageValues()->GetSize());
268 combiner_->AddSource(sources[j]);
275 combiner_->FetchItems(NULL);
284 base::ListValue* results = combiner_->GetPageValues();