Home | History | Annotate | Download | only in chrome_frame

Lines Matching defs:hr

24   HRESULT hr = CoCreateFreeThreadedMarshaler(GetUnknown(), ftm_.Receive());
26 if (SUCCEEDED(hr)) {
27 hr = bind_ctx->RegisterObjectParam(kBindContextInfo, GetUnknown());
30 DCHECK(SUCCEEDED(hr)) << "Failed to initialize BindContextInfo";
31 return hr;
43 HRESULT hr = bind_context->GetObjectParam(kBindContextInfo,
47 hr = internal.QueryFrom(context);
48 if (SUCCEEDED(hr)) {
49 hr = internal->GetCppObject(reinterpret_cast<void**>(info));
50 DCHECK_EQ(hr, S_OK);
55 DCHECK(FAILED(hr));
57 hr = CComObject<BindContextInfo>::CreateInstance(&bind_context_info);
61 hr = bind_context_info->Initialize(bind_context);
62 if (FAILED(hr)) {
70 return hr;