Searched refs:icon_path (Results 1 - 23 of 23) sorted by relevance

/external/chromium_org/extensions/common/
H A Dmanifest_handler_helpers.cc43 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/ui/views/frame/
H A Dbrowser_window_property_manager_win.cc84 base::FilePath icon_path; local
86 &pinned_name, &icon_path);
88 icon_path_string = icon_path.value();
/external/chromium_org/chrome/browser/profiles/
H A Dprofile_shortcut_manager.h43 // Populates the |command_line|, |name| and |icon_path| that a shortcut for
48 base::FilePath* icon_path) = 0;
H A Dprofile_shortcut_manager_win.h68 base::FilePath* icon_path) OVERRIDE;
H A Dprofile_shortcut_manager_unittest_win.cc76 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
791 EXPECT_TRUE(base::PathExists(icon_path));
792 EXPECT_TRUE(base::DeleteFile(icon_path, false));
793 EXPECT_FALSE(base::PathExists(icon_path));
797 EXPECT_TRUE(base::PathExists(icon_path));
[all...]
H A Dprofile_shortcut_manager_win.cc200 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);
702 GetShortcutProperties( const base::FilePath& profile_path, CommandLine* command_line, base::string16* name, base::FilePath* icon_path) argument
H A Dprofile_info_cache_unittest.cc586 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));
/external/chromium_org/chrome/browser/chromeos/app_mode/
H A Dkiosk_app_data.cc54 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
53 SaveIconToLocalOnBlockingPool( const base::FilePath& icon_path, scoped_refptr<base::RefCountedString> raw_icon) argument
98 IconLoader(const base::WeakPtr<KioskAppData>& client, const base::FilePath& icon_path) argument
368 SetCache(const std::string& name, const base::FilePath& icon_path) argument
[all...]
H A Dkiosk_app_data.h92 void SetCache(const std::string& name, const base::FilePath& icon_path);
H A Dkiosk_app_manager_browsertest.cc250 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());
/external/chromium_org/chrome/common/extensions/docs/server2/
H A Dsamples_model.py166 icon_path = posixpath.join(
169 icon_path = '%s/%s' % (icon_base, manifest_data['icon'])
171 'icon': icon_path,
/external/chromium_org/chrome/browser/
H A Djumplist_updater_win.h28 const std::wstring& icon_path() const { return icon_path_; } function in class:ShellLinkItem
H A Djumplist_updater_win.cc55 if (!item->icon_path().empty())
56 link->SetIconLocation(item->icon_path().c_str(), item->icon_index());
H A Djumplist_win.cc65 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);
63 CreateIconFile(const SkBitmap& bitmap, const base::FilePath& icon_dir, base::FilePath* icon_path) argument
/external/chromium_org/chrome/common/extensions/api/file_browser_handlers/
H A Dfile_browser_handler.h51 const std::string& icon_path() const { return default_icon_path_; } function in class:FileBrowserHandler
H A Dfile_browser_handler_manifest_unittest.cc81 EXPECT_EQ("icon.png", action->icon_path());
/external/chromium_org/chrome/browser/ui/views/app_list/win/
H A Dapp_list_service_win.cc83 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/browser/extensions/
H A Dconvert_web_app.cc116 std::string icon_path = base::StringPrintf("%s/%s.png", kIconsDirName, local
118 icons->SetString(size, icon_path);
/external/chromium_org/ui/gfx/
H A Dicon_util.h115 // Creates Windows .ico file at |icon_path|. The icon file is created with
130 const base::FilePath& icon_path);
H A Dicon_util.cc455 const base::FilePath& icon_path) {
520 return base::ImportantFileWriter::WriteFileAtomically(icon_path, data);
453 CreateIconFileFromImageFamily( const gfx::ImageFamily& image_family, const base::FilePath& icon_path) argument
/external/chromium_org/chrome/installer/util/
H A Dshell_util.h337 // Returns the string "|icon_path|,|icon_index|" (see, for example,
339 static base::string16 FormatIconLocation(const base::string16& icon_path,
H A Dshell_util.cc225 base::string16 icon_path(
300 chrome_html_prog_id + ShellUtil::kRegDefaultIcon, icon_path));
321 chrome_application, ShellUtil::kRegApplicationIcon, icon_path));
358 const base::string16 icon_path(
376 start_menu_entry + ShellUtil::kRegDefaultIcon, icon_path));
406 capabilities, ShellUtil::kRegApplicationIcon, icon_path));
1621 base::string16 ShellUtil::FormatIconLocation(const base::string16& icon_path, argument
1623 base::string16 icon_string(icon_path);
H A Dshell_util_unittest.cc81 base::FilePath icon_path; variable
82 base::CreateTemporaryFileInDir(temp_dir_.path(), &icon_path);
86 test_properties_.set_icon(icon_path, 7);

Completed in 5409 milliseconds