Home | History | Annotate | Download | only in browser

Lines Matching defs:shortcut

25 #include "base/win/shortcut.h"
430 // run-time Chrome icon is merged with the taskbar shortcut), but this is not
457 for (base::FilePath shortcut = shortcuts_enum.Next(); !shortcut.empty();
458 shortcut = shortcuts_enum.Next()) {
461 if (!base::win::ResolveShortcut(shortcut, &target_path, &arguments) ||
468 // Get the expected AppId for this Chrome shortcut.
474 // Load the shortcut.
480 FAILED(persist_file->Load(shortcut.value().c_str(), STGM_READ))) {
481 DLOG(WARNING) << "Failed loading shortcut at " << shortcut.value();
485 // Any properties that need to be updated on the shortcut will be stored in
489 // Validate the existing app id for the shortcut.
495 // When in doubt, prefer not updating the shortcut.
523 // When in doubt, prefer to not update the shortcut.
547 // Update the shortcut if some of its properties need to be updated.
550 shortcut, updated_properties,
567 base::FilePath shortcut;
574 if (!PathService::Get(kFolderIds[folder], &shortcut)) {
579 shortcut = shortcut.Append(shortcut_name).Append(shortcut_name +
581 if (base::PathExists(shortcut))
582 return shortcut;