Home | History | Annotate | Download | only in web_applications

Lines Matching refs:icons

509                   IconInfoList* icons) {
510 DCHECK(icons);
512 icons->clear();
513 for (size_t i = 0; i < app_info.icons.size(); ++i) {
514 // We only take square shaped icons (i.e. width == height).
515 if (app_info.icons[i].width == app_info.icons[i].height) {
516 icons->push_back(app_info.icons[i]);
520 std::sort(icons->begin(), icons->end(), &IconPrecedes);