HomeSort by relevance Sort by last modified time
    Searched full:attachment_services (Results 1 - 3 of 3) sorted by null

  /external/chromium/chrome/common/
win_safe_util.cc 27 base::win::ScopedComPtr<IAttachmentExecute> attachment_services; local
28 HRESULT hr = attachment_services.CreateInstance(CLSID_AttachmentServices);
45 attachment_services->SetClientGuid(kClientID);
48 attachment_services->SetClientTitle(window_title.c_str());
54 hr = attachment_services->SetLocalPath(full_path.value().c_str());
58 hr = attachment_services->SetSource(source_url.c_str());
63 if (attachment_services->CheckPolicy() != S_OK) {
78 hr = attachment_services->Prompt(hwnd, ATTACHMENT_PROMPT_EXEC, &action);
  /external/chromium_org/chrome/browser/media_galleries/fileapi/
av_scanning_file_validator.cc 33 base::win::ScopedComPtr<IAttachmentExecute> attachment_services; local
34 HRESULT hr = attachment_services.CreateInstance(CLSID_AttachmentServices);
42 hr = attachment_services->SetLocalPath(dest_platform_path.value().c_str());
48 HRESULT scan_result = attachment_services->Save();
  /external/chromium_org/content/browser/
safe_util_win.cc 57 base::win::ScopedComPtr<IAttachmentExecute> attachment_services; local
58 HRESULT hr = attachment_services.CreateInstance(CLSID_AttachmentServices);
72 hr = attachment_services->SetClientGuid(client_guid);
77 hr = attachment_services->SetLocalPath(full_path.value().c_str());
84 hr = attachment_services->SetSource(UTF8ToWide(source_url).c_str());
90 return attachment_services->Save();

Completed in 933 milliseconds