public unsafe void OnCDMRegistrationComplete(CefCDMRegistrationError result, [Immutable] cef_string_t *error_message)
 {
     fixed(cef_register_cdm_callback_t *self = &this)
     {
         ((delegate * unmanaged[Stdcall] < cef_register_cdm_callback_t *, CefCDMRegistrationError, cef_string_t *, void >)on_cdm_registration_complete)(self, result, error_message);
     }
 }
 public unsafe extern void OnCDMRegistrationComplete(CefCDMRegistrationError result, [Immutable] cef_string_t *error_message);
Exemplo n.º 3
0
        // void (*)(_cef_register_cdm_callback_t* self, cef_cdm_registration_error_t result, const cef_string_t* error_message)*
        private static unsafe void OnCDMRegistrationCompleteImpl(cef_register_cdm_callback_t *self, CefCDMRegistrationError result, cef_string_t *error_message)
        {
            var instance = GetInstance((IntPtr)self) as CefRegisterCDMCallback;

            if (instance == null || ((ICefRegisterCDMCallbackPrivate)instance).AvoidOnCDMRegistrationComplete())
            {
                return;
            }
            instance.OnCDMRegistrationComplete(result, CefString.Read(error_message));
        }
Exemplo n.º 4
0
 /// <summary>
 /// Method that will be called when CDM registration is complete. |result| will
 /// be CEF_CDM_REGISTRATION_ERROR_NONE if registration completed successfully.
 /// Otherwise, |result| and |error_message| will contain additional information
 /// about why registration failed.
 /// </summary>
 public unsafe virtual void OnCDMRegistrationComplete(CefCDMRegistrationError result, string errorMessage)
 {
 }
 public override void OnCDMRegistrationComplete(CefCDMRegistrationError result, string errorMessage)
 {
     _implementation.OnCDMRegistrationComplete(result, errorMessage);
 }
Exemplo n.º 6
0
 protected internal unsafe override void OnCDMRegistrationComplete(CefCDMRegistrationError result, string errorMessage)
 {
     _implementation.OnCDMRegistrationComplete(result, errorMessage);
 }
Exemplo n.º 7
0
 /// <summary>
 /// Method that will be called when CDM registration is complete. |result| will
 /// be CEF_CDM_REGISTRATION_ERROR_NONE if registration completed successfully.
 /// Otherwise, |result| and |error_message| will contain additional information
 /// about why registration failed.
 /// </summary>
 protected internal unsafe virtual void OnCDMRegistrationComplete(CefCDMRegistrationError result, string errorMessage)
 {
 }