From 9285c31613107af4d1a24533c7dd82fb75c49f27 Mon Sep 17 00:00:00 2001
From: hank <hank.zhang@proficientcity.com>
Date: Tue, 22 Jan 2019 11:04:35 +0800
Subject: [PATCH] [Update] WACbImpl (3.8.0)

---
 frameworks/Chartboost.framework/Versions/A/Headers/Chartboost.h |   25 +++++++++++++++++++++++++
 1 files changed, 25 insertions(+), 0 deletions(-)

diff --git a/frameworks/Chartboost.framework/Versions/A/Headers/Chartboost.h b/frameworks/Chartboost.framework/Versions/A/Headers/Chartboost.h
index bb3b0bd..8f2705d 100644
--- a/frameworks/Chartboost.framework/Versions/A/Headers/Chartboost.h
+++ b/frameworks/Chartboost.framework/Versions/A/Headers/Chartboost.h
@@ -387,7 +387,32 @@
  */
 + (BOOL)getAutoIAPTracking;
 
+/*!
+ @abstract
+ Mute/unmute chartboost ads.
+ @param mute YES all sounds, NO activates them. Default is NO
+ @discussion default value is NO
+ */
++ (void)setMuted:(BOOL)mute;
+
+/*!
+ @abstract
+ Set to restrict Chartboost's ability to collect personal data from the device. See CBPIDataUseConsent declaration for details
+ Note: This method should be called before starting the Chartboost SDK with startWithAppId:appSignature:delegate.
+ @param consent: set the consent level
+ @discussion Default value is Unknown
+ */
++ (void)setPIDataUseConsent:(CBPIDataUseConsent)consent;
+
+/*!
+ @abstract
+ Get the current consent setting
+ */
++ (CBPIDataUseConsent)getPIDataUseConsent;
+
 #pragma mark - Deprecated
++ (void)restrictDataCollection:(BOOL)shouldRestrict __attribute__((deprecated("Use setPIDataUseConsent:(CBPIDataUseConsent)consent instead")));
+
 + (BOOL)hasMoreApps:(CBLocation)location  __attribute__((deprecated("This method is deprecated will always return false")));
 + (void)showMoreApps:(CBLocation)location __attribute__((deprecated("This method is deprecated and is a no-op")));
 + (void)showMoreApps:(UIViewController *)viewController

--
Gitblit v1.8.0