Exemple #1
0
 public CustomTabsCallbackImpl(OnNavigationEventDelegate onNavigationEventHandler, ExtraCallbackDelegate extraCallbackHandler)
 {
     this.onNavigationEventHandler = onNavigationEventHandler;
     this.extraCallbackHandler     = extraCallbackHandler;
 }
Exemple #2
0
 public CustomTabsCallbackImpl(OnNavigationEventDelegate onNavigationEventHandler)
 {
     this.onNavigationEventHandler = onNavigationEventHandler;
 }
 public CustomTabsSession NewSession(OnNavigationEventDelegate callback)
 {
     return(NewSession(new CustomTabsCallbackImpl(callback)));
 }
Exemple #4
0
 public CustomTabsSession NewSession(OnNavigationEventDelegate onNavigationEventHandler, ExtraCallbackDelegate extraCallbackHandler)
 {
     return(NewSession(new CustomTabsCallbackImpl(onNavigationEventHandler, extraCallbackHandler)));
 }
 public CustomTabsCallbackImpl(OnNavigationEventDelegate callback)
 {
     this.callback = callback;
 }