From 96a95cc223e075b9c5222611237d637d5c8459fa Mon Sep 17 00:00:00 2001 From: hank <hank.zhang@proficientcity.com> Date: Thu, 20 Jun 2019 09:45:54 +0800 Subject: [PATCH] 添加V3.8.2 --- frameworks/Chartboost.framework/Versions/A/Headers/ChartboostDelegate.h | 28 ++++++++++++++++++++++++++-- 1 files changed, 26 insertions(+), 2 deletions(-) diff --git a/frameworks/Chartboost.framework/Versions/A/Headers/ChartboostDelegate.h b/frameworks/Chartboost.framework/Versions/A/Headers/ChartboostDelegate.h index 38dd87b..d50ffce 100644 --- a/frameworks/Chartboost.framework/Versions/A/Headers/ChartboostDelegate.h +++ b/frameworks/Chartboost.framework/Versions/A/Headers/ChartboostDelegate.h @@ -6,6 +6,7 @@ // #import <Foundation/Foundation.h> +#import <UIKit/UIKit.h> @class UIView; @@ -86,7 +87,9 @@ /*! HyprMX */ CBMediationHyprMX, /*! AerServ */ - CBMediationAerServ + CBMediationAerServ, + /*! Helium */ + CBMediationHelium }; @@ -127,7 +130,9 @@ /*! Error Originating from the JS side of a Web View */ CBLoadErrorWebViewScriptError = 22, /*! Network is unavailable while attempting to show. */ - CBLoadErrorInternetUnavailableAtShow = 25 + CBLoadErrorInternetUnavailableAtShow = 25, + /*! Error trying to present the ad. */ + CBLoadErrorAdPresentationFailure = 33 }; /*! @@ -179,6 +184,25 @@ YesBehavioral = 1 }; + + +/*! + @typedef CBBannerSize + + @abstract + Defines standard sizes used to initialize Banner objects. + + @discussion Standard sizes used to describe default Banner bounds. + */ +typedef CGSize const CBBannerSize; +/*! "Banner" - Standard banner size on phones. */ +FOUNDATION_EXPORT CBBannerSize const CBBannerSizeStandard; +/*! "Medium Rect" - Medium banner size on phones. */ +FOUNDATION_EXPORT CBBannerSize const CBBannerSizeMedium; +/*! "Tablet" - Leaderboard banner size on tablets. */ +FOUNDATION_EXPORT CBBannerSize const CBBannerSizeLeaderboard; + + /*! @typedef CBLocation -- Gitblit v1.8.0