HomeSort by relevance Sort by last modified time
    Searched defs:icon_path (Results 1 - 13 of 13) sorted by null

  /external/chromium_org/extensions/common/
manifest_handler_helpers.cc 43 std::string icon_path; local
44 if (!icons_value->GetString(key, &icon_path)) {
50 if (!NormalizeAndValidatePath(&icon_path)) {
56 icons->Add(icon_sizes[i], icon_path);
  /external/chromium_org/chrome/browser/
jumplist_updater_win.h 28 const std::wstring& icon_path() const { return icon_path_; } function in class:ShellLinkItem
jumplist_win.cc 65 base::FilePath* icon_path) {
82 *icon_path = path;
501 base::FilePath icon_path; local
502 if (CreateIconFile((*item)->icon_data(), icon_dir_, &icon_path))
503 (*item)->set_icon(icon_path.value(), 0);
  /external/chromium_org/chrome/browser/ui/views/frame/
browser_window_property_manager_win.cc 84 base::FilePath icon_path; local
86 &pinned_name, &icon_path);
88 icon_path_string = icon_path.value();
  /external/chromium_org/chrome/common/extensions/api/file_browser_handlers/
file_browser_handler.h 51 const std::string& icon_path() const { return default_icon_path_; } function in class:FileBrowserHandler
  /external/chromium_org/chrome/browser/extensions/
convert_web_app.cc 116 std::string icon_path = base::StringPrintf("%s/%s.png", kIconsDirName, local
118 icons->SetString(size, icon_path);
  /external/chromium_org/chrome/browser/profiles/
profile_info_cache_unittest.cc 586 base::FilePath icon_path = local
588 EXPECT_NE(std::string::npos, icon_path.MaybeAsASCII().find(file_name));
589 EXPECT_TRUE(base::PathExists(icon_path));
590 EXPECT_TRUE(base::DeleteFile(icon_path, true));
591 EXPECT_FALSE(base::PathExists(icon_path));
profile_shortcut_manager_unittest_win.cc 76 const base::FilePath icon_path = variable
78 ASSERT_TRUE(base::PathExists(icon_path));
138 const base::FilePath icon_path = local
140 EXPECT_TRUE(base::PathExists(icon_path)) << location.ToString();
150 expected_properties.set_icon(icon_path, 0);
788 const base::FilePath icon_path = local
    [all...]
profile_shortcut_manager_win.cc 200 const base::FilePath icon_path = local
202 const bool had_icon = base::PathExists(icon_path);
204 if (!IconUtil::CreateIconFileFromImageFamily(badged_bitmaps, icon_path)) {
219 SHChangeNotify(SHCNE_CREATE, SHCNF_PATH, icon_path.value().c_str(), NULL);
224 return icon_path;
706 base::FilePath* icon_path) {
729 *icon_path = profiles::internal::GetProfileIconPath(profile_path);
    [all...]
  /external/chromium_org/chrome/browser/ui/views/app_list/win/
app_list_service_win.cc 83 base::FilePath icon_path; local
84 if (!PathService::Get(base::FILE_EXE, &icon_path)) {
91 base::string16 result = icon_path.value();
245 base::string16 icon_path = GetAppListIconPath(); local
246 ui::win::SetAppIconForWindow(icon_path, hwnd);
  /external/chromium_org/chrome/installer/util/
shell_util_unittest.cc 81 base::FilePath icon_path; variable
82 base::CreateTemporaryFileInDir(temp_dir_.path(), &icon_path);
86 test_properties_.set_icon(icon_path, 7);
    [all...]
  /external/chromium_org/chrome/browser/chromeos/app_mode/
kiosk_app_data.cc 54 const base::FilePath& icon_path,
58 base::FilePath dir = icon_path.DirName();
63 base::WriteFile(icon_path,
99 const base::FilePath& icon_path)
101 icon_path_(icon_path),
369 const base::FilePath& icon_path) {
378 dict_update->SetString(icon_path_key, icon_path.value());
379 icon_path_ = icon_path;
395 base::FilePath icon_path = local
399 base::Bind(&SaveIconToLocalOnBlockingPool, icon_path, raw_icon_))
    [all...]
kiosk_app_manager_browsertest.cc 250 base::FilePath icon_path = temp_dir_.path().AppendASCII(icon_file_name); local
251 base::CopyFile(data_dir.AppendASCII(icon_file_name), icon_path);
255 apps_dict->SetString(app_id + ".icon", icon_path.MaybeAsASCII());

Completed in 196 milliseconds