Home | History | Annotate | Download | only in extensions

Lines Matching refs:icon_path

1611   FilePath icon_path = extension->GetIconResource(
1613 DecodeIconFromPath(icon_path, icon_size, result);
1617 void Extension::DecodeIconFromPath(const FilePath& icon_path,
1620 if (icon_path.empty())
1624 if (!file_util::ReadFileToString(icon_path, &file_contents)) {
1625 LOG(ERROR) << "Could not read icon file: " << icon_path.LossyDisplayName();
1637 << icon_path.LossyDisplayName();
1822 std::string icon_path;
1823 if (!icons_value->GetString(key, &icon_path)) {
1829 if (!icon_path.empty() && icon_path[0] == '/')
1830 icon_path = icon_path.substr(1);
1832 if (icon_path.empty()) {
1838 icons_.Add(kIconSizes[i], icon_path);