Home | History | Annotate | Download | only in web_applications

Lines Matching refs:shortcut_file

127     base::FilePath shortcut_file = files.Next();
128 while (!shortcut_file.empty()) {
129 if (IsAppShortcutForProfile(shortcut_file, profile_path))
130 shortcut_paths.push_back(shortcut_file);
131 shortcut_file = files.Next();
141 base::FilePath shortcut_file = base_path;
143 shortcut_file = shortcut_file.InsertBeforeExtensionASCII(
146 if (base::PathExists(shortcut_file) &&
147 IsAppShortcutForProfile(shortcut_file, profile_path)) {
148 shortcut_paths.push_back(shortcut_file);
212 base::FilePath shortcut_file =
228 base::GetUniquePathNumber(shortcut_file,
234 shortcut_file = shortcut_file.InsertBeforeExtensionASCII(
246 if (!base::PathExists(shortcut_file.DirName()) &&
247 !base::CreateDirectory(shortcut_file.DirName())) {
252 shortcut_file, shortcut_properties,
255 out_filenames->push_back(shortcut_file);