Searched defs:icon_path (Results 1 - 6 of 6) sorted by relevance
/external/chromium/chrome/common/extensions/ |
H A D | file_browser_handler.h | 47 const std::string icon_path() const { return default_icon_path_; } function in class:FileBrowserHandler
|
H A D | extension.cc | 1611 FilePath icon_path = extension->GetIconResource( local 1613 DecodeIconFromPath(icon_path, icon_size, result); 1617 void Extension::DecodeIconFromPath(const FilePath& icon_path, argument 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; local 1823 if (!icons_value->GetString(key, &icon_path)) { 1829 if (!icon_path [all...] |
/external/chromium/chrome/browser/extensions/ |
H A D | convert_web_app.cc | 116 std::string icon_path = StringPrintf("%s/%s.png", kIconsDirName, local 118 icons->SetString(size, icon_path);
|
/external/chromium/base/ |
H A D | mime_util_xdg.cc | 188 FilePath icon_path; local 195 icon_path = GetIconPathUnderSubdir(icon_name, subdir_iter->first); 196 if (!icon_path.empty()) 197 return icon_path; 212 icon_path = path; 217 if (!icon_path.empty() || !inherits || inherits_ == "") 218 return icon_path; 245 FilePath icon_path; local 251 icon_path = dir_iter->Append(subdir); 252 icon_path 536 FilePath icon_path; local [all...] |
/external/chromium/chrome/browser/ |
H A D | jumplist_win.cc | 248 FilePath* icon_path) { 263 *icon_path = path; 542 FilePath icon_path; local 543 if (CreateIconFile(icon_bitmap, icon_dir_, &icon_path)) 544 (*item)->SetIcon(icon_path.value(), 0, true); 557 FilePath icon_path; local 558 if (CreateIconFile(icon_bitmap, icon_dir_, &icon_path)) 559 (*item)->SetIcon(icon_path.value(), 0, true); 246 CreateIconFile(const SkBitmap& bitmap, const FilePath& icon_dir, FilePath* icon_path) argument
|
/external/chromium/chrome/browser/ui/gtk/ |
H A D | location_bar_view_gtk.cc | 1518 std::string icon_path = (icon_index < 0) ? local 1521 if (!icon_path.empty()) { 1522 PixbufMap::iterator iter = pixbufs_.find(icon_path);
|
Completed in 1061 milliseconds