Esempio n. 1
0
 protected internal virtual void OnContextReleased(CefBrowser browser, CefFrame frame, CefV8Context context)
 {
     XrayObject.OnContextReleased(context);
 }
Esempio n. 2
0
 /// <summary>
 /// Returns the entered (bottom) context object in the V8 context stack.
 /// </summary>
 public static CefV8Context GetEnteredContext()
 {
     return(CefV8Context.Wrap(CefV8Context.Create, CefNativeApi.cef_v8context_get_entered_context()));
 }
Esempio n. 3
0
 /// <summary>
 /// Returns true (1) if this object is pointing to the same handle as |that|
 /// object.
 /// </summary>
 public unsafe virtual bool IsSame(CefV8Context that)
 {
     return(SafeCall(NativeInstance->IsSame((that != null) ? that.GetNativeInstance() : null) != 0));
 }
Esempio n. 4
0
 /// <summary>
 /// Returns the current (top) context object in the V8 context stack.
 /// </summary>
 public static CefV8Context GetCurrentContext()
 {
     return(CefV8Context.Wrap(CefV8Context.Create, CefNativeApi.cef_v8context_get_current_context()));
 }