HomeSort by relevance Sort by last modified time
    Searched defs:moniker (Results 1 - 4 of 4) sorted by null

  /external/chromium_org/chrome_frame/
urlmon_moniker.cc 46 base::win::ScopedComPtr<IMoniker> moniker; local
49 SUCCEEDED(hr = ::CreateURLMonikerEx(NULL, url_.c_str(), moniker.Receive(),
69 hr = NavigateBrowserToMoniker(browser, moniker, headers.c_str(),
107 base::win::ScopedComPtr<IMoniker> moniker; local
109 moniker.Receive());
112 hr = vtable_patch::PatchInterfaceMethods(moniker, IMoniker_PatchInfo);
125 bool ShouldWrapCallback(IMoniker* moniker, REFIID iid, IBindCtx* bind_context) {
127 HRESULT hr = moniker->GetDisplayName(bind_context, NULL, &url);
utils.h 314 // Navigates an IWebBrowser2 object to a moniker.
316 HRESULT NavigateBrowserToMoniker(IUnknown* browser, IMoniker* moniker,
411 // whether it matches the url retrieved from the moniker. If yes it returns
412 // the bho url, if not the moniker url.
413 std::wstring GetActualUrlFromMoniker(IMoniker* moniker,
437 base::win::ScopedComPtr<IMoniker> moniker; member in struct:DownloadInHostParams
  /external/chromium_org/chrome_frame/test/
urlmon_moniker_integration_test.cc 184 base::win::ScopedComPtr<IMoniker> moniker; local
185 HRESULT hr = CreateURLMoniker(NULL, url, moniker.Receive());
186 EXPECT_TRUE(moniker != NULL);
187 if (moniker) {
192 hr = moniker->BindToStorage(context, NULL, IID_IStream,
212 // Tests synchronously binding to a moniker and downloading the target.
237 // Tests asynchronously binding to a moniker and downloading the target.
  /external/chromium_org/media/video/capture/win/
video_capture_device_win.cc 42 ScopedComPtr<IMoniker> moniker;
45 while (enum_moniker->Next(1, moniker.Receive(), &fetched) == S_OK) {
47 hr = moniker->BindToStorage(0, 0, IID_IPropertyBag, prop_bag.ReceiveVoid());
49 moniker.Release();
66 hr = moniker->BindToObject(0, 0, IID_IBaseFilter,
72 moniker.Release();
219 ScopedComPtr<IMoniker> moniker; local
221 while (enum_moniker->Next(1, moniker.Receive(), NULL) == S_OK) {
223 hr = moniker->BindToStorage(0, 0, IID_IPropertyBag, prop_bag.ReceiveVoid());
225 moniker.Release()
    [all...]

Completed in 121 milliseconds