// Token: 0x06000117 RID: 279 RVA: 0x0000660E File Offset: 0x00004A0E
 private static void doShowAgeGate(bool visible)
 {
     if (Chartboost.shouldPause)
     {
         Chartboost.doUnityPause(!visible, true);
     }
     Chartboost.showingAgeGate = visible;
 }
 // Token: 0x06000108 RID: 264 RVA: 0x000062CD File Offset: 0x000046CD
 private void didDisplayMoreAppsEvent(string location)
 {
     Chartboost.doUnityPause(true, true);
     if (Chartboost.didDisplayMoreApps != null)
     {
         Chartboost.didDisplayMoreApps(CBLocation.locationFromName(location));
     }
 }
 // Token: 0x06000103 RID: 259 RVA: 0x00006214 File Offset: 0x00004614
 private void didDismissMoreAppsEvent(string location)
 {
     Chartboost.doUnityPause(false, false);
     if (Chartboost.didDismissMoreApps != null)
     {
         Chartboost.didDismissMoreApps(CBLocation.locationFromName(location));
     }
 }
 // Token: 0x06000111 RID: 273 RVA: 0x000064D8 File Offset: 0x000048D8
 private void didDisplayRewardedVideoEvent(string location)
 {
     Chartboost.doUnityPause(true, true);
     if (CBExternal.isWebViewEnabled())
     {
         Screen.orientation = Screen.orientation;
     }
     if (Chartboost.didDisplayRewardedVideo != null)
     {
         Chartboost.didDisplayRewardedVideo(CBLocation.locationFromName(location));
     }
 }
 // Token: 0x06000101 RID: 257 RVA: 0x00006189 File Offset: 0x00004589
 public void didDisplayInterstitialEvent(string location)
 {
     Chartboost.doUnityPause(true, true);
     if (CBExternal.isWebViewEnabled())
     {
         Screen.orientation = Screen.orientation;
     }
     if (Chartboost.didDisplayInterstitial != null)
     {
         Chartboost.didDisplayInterstitial(CBLocation.locationFromName(location));
     }
 }
 // Token: 0x060000FC RID: 252 RVA: 0x000060C0 File Offset: 0x000044C0
 private void didDismissInterstitialEvent(string location)
 {
     Chartboost.doUnityPause(false, false);
     if (CBExternal.isWebViewEnabled())
     {
         Screen.orientation = ScreenOrientation.AutoRotation;
     }
     if (Chartboost.didDismissInterstitial != null)
     {
         Chartboost.didDismissInterstitial(CBLocation.locationFromName(location));
     }
 }