Home
last modified time | relevance | path

Searched refs:persist_file (Results 1 – 6 of 6) sorted by relevance

/external/chromium_org/chrome/browser/
Dshell_integration_win.cc417 base::win::ScopedComPtr<IPersistFile> persist_file; in MigrateShortcutsInPathInternal() local
420 FAILED(persist_file.QueryFrom(shell_link)) || in MigrateShortcutsInPathInternal()
421 FAILED(persist_file->Load(shortcut.value().c_str(), STGM_READ))) { in MigrateShortcutsInPathInternal()
485 persist_file.Release(); in MigrateShortcutsInPathInternal()
/external/chromium/chrome/browser/
Dshell_integration_win.cc165 base::win::ScopedComPtr<IPersistFile> persist_file; in MigrateWin7ShortcutsInPath() local
166 if (FAILED(persist_file.QueryFrom(shell_link)) || in MigrateWin7ShortcutsInPath()
167 FAILED(persist_file->Load(shortcut.value().c_str(), STGM_READ))) { in MigrateWin7ShortcutsInPath()
/external/chromium/chrome/browser/importer/
Die_importer.cc476 base::win::ScopedComPtr<IPersistFile> persist_file; in ResolveInternetShortcut() local
477 result = persist_file.QueryFrom(url_locator); in ResolveInternetShortcut()
482 result = persist_file->Load(file.c_str(), STGM_READ); in ResolveInternetShortcut()
Dimporter_unittest.cc274 base::win::ScopedComPtr<IPersistFile> persist_file; in CreateUrlFile() local
275 result = persist_file.QueryFrom(locator); in CreateUrlFile()
281 result = persist_file->Save(file.c_str(), TRUE); in CreateUrlFile()
/external/chromium_org/chrome/browser/importer/
Die_importer_browsertest_win.cc170 base::win::ScopedComPtr<IPersistFile> persist_file; in CreateUrlFileWithFavicon() local
171 result = persist_file.QueryFrom(locator); in CreateUrlFileWithFavicon()
201 result = persist_file->Save(file.value().c_str(), TRUE); in CreateUrlFileWithFavicon()
/external/chromium_org/chrome/utility/importer/
Die_importer_win.cc276 base::win::ScopedComPtr<IPersistFile> persist_file; in LoadInternetShortcut() local
277 if (FAILED(persist_file.QueryFrom(url_locator))) in LoadInternetShortcut()
281 if (FAILED(persist_file->Load(file.c_str(), STGM_READ))) in LoadInternetShortcut()