HomeSort by relevance Sort by last modified time
    Searched refs:persist_file (Results 1 - 6 of 6) sorted by null

  /external/chromium_org/chrome/browser/
shell_integration_win.cc 417 base::win::ScopedComPtr<IPersistFile> persist_file; local
420 FAILED(persist_file.QueryFrom(shell_link)) ||
421 FAILED(persist_file->Load(shortcut.value().c_str(), STGM_READ))) {
485 persist_file.Release();
  /external/chromium/chrome/browser/
shell_integration_win.cc 165 base::win::ScopedComPtr<IPersistFile> persist_file; local
166 if (FAILED(persist_file.QueryFrom(shell_link)) ||
167 FAILED(persist_file->Load(shortcut.value().c_str(), STGM_READ))) {
  /external/chromium/chrome/browser/importer/
ie_importer.cc 476 base::win::ScopedComPtr<IPersistFile> persist_file;
477 result = persist_file.QueryFrom(url_locator);
482 result = persist_file->Load(file.c_str(), STGM_READ);
importer_unittest.cc 274 base::win::ScopedComPtr<IPersistFile> persist_file;
275 result = persist_file.QueryFrom(locator);
281 result = persist_file->Save(file.c_str(), TRUE);
    [all...]
  /external/chromium_org/chrome/browser/importer/
ie_importer_browsertest_win.cc 170 base::win::ScopedComPtr<IPersistFile> persist_file;
171 result = persist_file.QueryFrom(locator);
201 result = persist_file->Save(file.value().c_str(), TRUE);
  /external/chromium_org/chrome/utility/importer/
ie_importer_win.cc 276 base::win::ScopedComPtr<IPersistFile> persist_file;
277 if (FAILED(persist_file.QueryFrom(url_locator)))
281 if (FAILED(persist_file->Load(file.c_str(), STGM_READ)))

Completed in 54 milliseconds