From 500942a4d6bae9ada00141ac4ea27ab8e562748c Mon Sep 17 00:00:00 2001 From: hank <hank.zhang@proficientcity.com> Date: Thu, 20 Jun 2019 09:47:28 +0800 Subject: [PATCH] [Update] WACbImpl (3.8.2) --- frameworks/Chartboost.framework/Versions/A/Headers/ChartboostDelegate.h | 44 ++++++++++++++++++++++++++++++++++++++++++-- 1 files changed, 42 insertions(+), 2 deletions(-) diff --git a/frameworks/Chartboost.framework/Versions/A/Headers/ChartboostDelegate.h b/frameworks/Chartboost.framework/Versions/A/Headers/ChartboostDelegate.h index 59faf14..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 }; /*! @@ -163,6 +168,41 @@ CBStatusBarBehaviorRespect }; + +/*! + @typedef NS_ENUM (NSUInteger, CBPIDataUseConsent) + + @abstract + GDPR compliance settings: + */ +typedef NS_ENUM(NSInteger, CBPIDataUseConsent) { + /*! Publisher hasn't implemented functionality or the user has the option to not answer. */ + Unknown = -1, + /*! User does not consent to targeting (Contextual ads). */ + NoBehavioral = 0, + /*! User consents (Behavioral and Contextual Ads). */ + 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