/external/chromium_org/base/test/ |
test_shortcut_win.h | 21 // Validates that a shortcut exists at |shortcut_path| with the expected 24 void ValidateShortcut(const FilePath& shortcut_path,
|
test_shortcut_win.cc | 50 void ValidateShortcut(const base::FilePath& shortcut_path, 76 shortcut_path.value().c_str(), 0))) << "Failed to load shortcut at " 77 << shortcut_path.value();
|
/external/chromium_org/base/win/ |
shortcut.cc | 45 bool CreateOrUpdateShortcutLink(const FilePath& shortcut_path, 57 bool shortcut_existed = PathExists(shortcut_path); 71 InitializeShortcutInterfaces(shortcut_path.value().c_str(), &i_shell_link, 75 InitializeShortcutInterfaces(shortcut_path.value().c_str(), 77 // Confirm |shortcut_path| exists and is a shortcut by verifying 152 HRESULT result = i_persist_file->Save(shortcut_path.value().c_str(), TRUE); 168 SHChangeNotify(SHCNE_CREATE, SHCNF_PATH, shortcut_path.value().c_str(), 176 bool ResolveShortcutProperties(const FilePath& shortcut_path, 199 if (FAILED(persist->Load(shortcut_path.value().c_str(), STGM_READ))) 287 bool ResolveShortcut(const FilePath& shortcut_path, [all...] |
shortcut.h | 117 // This method creates (or updates) a shortcut link at |shortcut_path| using the 122 // |shortcut_path| does not exist, this method is a no-op and returns false. 124 const FilePath& shortcut_path, 130 // The path of the shortcut to resolve is in |shortcut_path|. |options| is a bit 138 BASE_EXPORT bool ResolveShortcutProperties(const FilePath& shortcut_path, 148 // |shortcut_path| and |target_path|. 149 BASE_EXPORT bool ResolveShortcut(const FilePath& shortcut_path,
|
/external/chromium_org/chrome/browser/profiles/ |
profile_shortcut_manager_unittest_win.cc | 131 // shortcut at |shortcut_path| for the profile at |profile_path|. 133 const base::FilePath& shortcut_path, 135 EXPECT_TRUE(base::PathExists(shortcut_path)) << location.ToString(); 151 base::win::ValidateShortcut(shortcut_path, expected_properties); 165 const base::FilePath& shortcut_path) { 166 EXPECT_TRUE(base::PathExists(shortcut_path)) << location.ToString(); 174 base::win::ValidateShortcut(shortcut_path, expected_properties); 178 const base::FilePath shortcut_path = local 180 ValidateNonProfileShortcutAtPath(location, shortcut_path); 200 const base::FilePath shortcut_path local [all...] |
/external/chromium_org/chrome/installer/util/ |
shell_util_unittest.cc | 384 base::FilePath shortcut_path = GetExpectedShortcutPath( local 386 ASSERT_TRUE(base::PathExists(shortcut_path)); 391 ASSERT_FALSE(base::PathExists(shortcut_path)); 392 ASSERT_TRUE(base::PathExists(shortcut_path.DirName())); 400 base::FilePath shortcut_path = GetExpectedShortcutPath( local 402 ASSERT_TRUE(base::PathExists(shortcut_path)); 407 ASSERT_FALSE(base::PathExists(shortcut_path)); 408 ASSERT_TRUE(base::PathExists(shortcut_path.DirName())); [all...] |
shell_util.cc | [all...] |
/external/chromium_org/chrome/browser/ |
shell_integration_win_unittest.cc | 89 base::FilePath shortcut_path = local 93 shortcut_test_object.path = shortcut_path; 97 shortcut_path, *shortcut_properties,
|
/external/chromium_org/chrome/browser/web_applications/ |
web_app_win.cc | 113 // Finds shortcuts in |shortcut_path| that match profile for |profile_path| and 117 const base::FilePath& shortcut_path, 124 base::FileEnumerator files(shortcut_path, false, 135 base::FilePath base_path = shortcut_path.
|
/external/chromium_org/chrome/browser/plugins/ |
plugin_infobar_delegates.cc | 493 base::FilePath shortcut_path( 500 shortcut_path, url);
|
/external/chromium_org/ui/app_list/views/ |
apps_grid_view.cc | 254 void set_shortcut_path(const base::FilePath& shortcut_path) { 256 shortcut_path_ = shortcut_path; [all...] |