Home | History | Annotate | Download | only in search

Lines Matching refs:Mixer

13 #include "chrome/browser/ui/app_list/search/mixer.h"
101 mixer_.reset(new Mixer(results_.get()));
103 mixer_->AddProviderToGroup(Mixer::MAIN_GROUP, providers_[0]);
104 mixer_->AddProviderToGroup(Mixer::OMNIBOX_GROUP, providers_[1]);
105 mixer_->AddProviderToGroup(Mixer::WEBSTORE_GROUP, providers_[2]);
106 mixer_->AddProviderToGroup(Mixer::PEOPLE_GROUP, providers_[3]);
132 Mixer* mixer() { return mixer_.get(); }
138 scoped_ptr<Mixer> mixer_;
209 Mixer::SortedResults new_results;
210 new_results.push_back(Mixer::SortData(result1.get(), 1.0f));
211 new_results.push_back(Mixer::SortData(result2.get(), 1.0f));
212 new_results.push_back(Mixer::SortData(result3.get(), 1.0f));
214 Mixer::Publish(new_results, &ui_results);
233 new_results[0] = Mixer::SortData(result4.get(), 1.0f);
242 new_results[2] = Mixer::SortData(result3_copy.get(), 1.0f);
244 Mixer::Publish(new_results, &ui_results);
269 new_results[0] = Mixer::SortData(result2.get(), 1.0f);
270 new_results[1] = Mixer::SortData(result5.get(), 1.0f);
271 new_results[2] = Mixer::SortData(result3.get(), 1.0f);
272 new_results.push_back(Mixer::SortData(result4.get(), 1.0f));
274 Mixer::Publish(new_results, &ui_results);