// // DFPCustomRenderedInterstitialDelegate.h // Google Mobile Ads SDK // // Copyright 2014 Google Inc. All rights reserved. // #import @class DFPCustomRenderedAd; @class DFPInterstitial; @protocol DFPCustomRenderedInterstitialDelegate /// Called after ad data has been received. You must construct an interstitial from /// |customRenderedAd| and call the |customRenderedAd| object's finishedRenderingAdView: method when /// the ad has been rendered. - (void)interstitial:(DFPInterstitial *)interstitial didReceiveCustomRenderedAd:(DFPCustomRenderedAd *)customRenderedAd; @end