Questions tagged [cefglue]

CefGlue is a .NET binding for The Chromium Embedded Framework (CEF)

CefGlue is a .NET binding for The Chromium Embedded Framework (CEF). CefGlue uses P/Invoke to call into the CEF unmanaged code.

45 questions
0
votes
0 answers

Is it possible to load an unmanaged dll asynchronously?

I am working on a word vsto add-in that have integrated cefglue (a .net binding for cef) as its webview control. But when loading libcef.dll, it will block the startup of word until finished the loading. I have tried load this unmanaged dll…
Lucas
  • 222
  • 3
  • 9
0
votes
1 answer

About RequestContext in cefGlue

There have multiple cefglue in winform,I hope that each cefglue has a separate cache. In cefsharp: var browser = new ChromiumWebBrowser(url); browser.RequestContext = new RequestContext(new RequestContextSettings() { CachePath…
0
votes
1 answer

WPF Application crashes after overriding CefApp.GetRenderProcessHandler() for JS to C# call

I am developing a wpf application by using Xilium.CefGlue and Xilium.CefGlue.WPF. My WPF application is getting crashed after implementing Xilium.CefGlue.CefApp.GetRenderProcessHandler() in SampleCefApp. Before this implementation the application…
shijeesh
  • 7
  • 4
0
votes
1 answer

CEFGlue in plug-in enviornment not rendering

I have been referring the "CefGlue.Samples.WpfOsr" inside the CEFGlue samples available at https://bitbucket.org/xilium/xilium.cefglue/downloads and trying to integrate the same in a plug-in assembly. No matter what ever I do, the browser control…
Shanadas
  • 515
  • 1
  • 6
  • 22
0
votes
1 answer

Using CefGlue to return HTML page from an Url

I am attempting to write an implementation for the following (prototype) method: var result = browser.GetHtml(string url); The reason I need this is because there are a number of pages that push a mound of Javascript to the browser, and then the…
Robert Harvey
  • 178,213
  • 47
  • 333
  • 501
0
votes
1 answer

CefGlue remote debugging port not working

I have built two applications with CefGlue. Both share the same code base where I set the remote debugging port. But for one it works and for the other it does not. By this I mean that the remote debugging page is available but it's just blank…
Sjoerd222888
  • 3,228
  • 3
  • 31
  • 64
0
votes
1 answer

CEF 3 Disable WebRTC - Ip leaks

Can we disable WebRTC in CEF 3 ? I`m referring specifically to JavaScript access to local ips. Chrome seems to have settings like chrome.privacy.network.webRTCMultipleRoutesEnabled that help - but these do not seem to exist in CEF.
0
votes
1 answer

Call .NET from JavaScript using CefGlue / CEF3

There is an existing solution for CefGlue: Call .Net from javascript in CefSharp 1 - wpf I want exactly this, but for CefGlue: I want to communicate with the App using JavaScript. So when I click a button in my HTML site, I want the application to…
AmazingTurtle
  • 1,187
  • 1
  • 15
  • 31
0
votes
1 answer

Xilium CefGlue - How to get a result from javascript?

In C# with Wilium CefGlue, I call JavaScript code like this browser.GetMainFrame().ExecuteJavaScript("return 1;", null, 0); But ExecuteJavaScript() is a void method. How can I get the return value from JavaScript code? Any guidance would be…
LeMoussel
  • 5,290
  • 12
  • 69
  • 122
0
votes
1 answer

Xilium CefGlue - How to get HTML source synchonously?

I want to get source of web page in CEF3/Xilium CefGlue rom non-UI thread (offscreen browser) I do this internal class TestCefLoadHandler : CefLoadHandler { protected override void OnLoadStart(CefBrowser browser, CefFrame frame) { …
LeMoussel
  • 5,290
  • 12
  • 69
  • 122
0
votes
1 answer

Does CEF3 supports JAWS and accessibility?

I am trying to use JAWS in my application which uses CEF3 as the embedded browser with .NET Wrapper Xilium which is using CEF3 3.2171.1875. But JAWS only partially reads the screen and does not do it as it does in a chrome browser. I am using the…
Sonal
  • 1,188
  • 2
  • 8
  • 10
0
votes
1 answer

Xilium CefGlue in Vline can only receive calls

I have set up a vLine agent withing Xilium CefGlue and mostly it works. It can send text messages, receive voice and video calls that function as expected but when a voice or video call is made out of CefGlue to a Chrome browser or CefGlue the call…
JamesWR
  • 1
  • 1
0
votes
1 answer

Clear CefGlue Browser history

I'm using Xilium.CefGlue browser for WPF. How can I clear browser history? I didn't found any managed API for that. I found only method definition in cef_browser_capi.h.
TcKs
  • 25,849
  • 11
  • 66
  • 104
-1
votes
1 answer

Xilium CefGlue - How to use Proxy?

I want to use a proxy with credentials with Xilium CefGlue in C#. Can anybody tell me how to do this ? I am doing something like this:- internal class CefProxy : CefUrlRequestClient { protected override void OnDownloadData(CefUrlRequest…
Puneet Pant
  • 918
  • 12
  • 37
-1
votes
1 answer

why CefGlue.Demo.WinForms OnTooltip never being called,but it displayed in the demo

when I debug the CefGlue.Demo.WinForms ,Tooltip displayed ,but how it works? Anybody can help? thanks.
Wyman
  • 1
  • 1
1 2
3