X-Git-Url: https://gitweb.stoutner.com/?a=blobdiff_plain;f=app%2Fsrc%2Fstandard%2Fjava%2Fcom%2Fstoutner%2Fprivacybrowser%2FBannerAd.java;h=1afe688addd7dd3de22cd070c695b0b0188a9225;hb=77756d29db4d52a35a3999f67b101e22525c97e2;hp=651c8971be617403fa523ff10f34c5e1c27824d3;hpb=4e087dd6a40ef24878a308c0c9d3102d8b1acdd7;p=PrivacyBrowserAndroid.git diff --git a/app/src/standard/java/com/stoutner/privacybrowser/BannerAd.java b/app/src/standard/java/com/stoutner/privacybrowser/BannerAd.java index 651c8971..1afe688a 100644 --- a/app/src/standard/java/com/stoutner/privacybrowser/BannerAd.java +++ b/app/src/standard/java/com/stoutner/privacybrowser/BannerAd.java @@ -19,18 +19,31 @@ package com.stoutner.privacybrowser; +import android.content.Context; import android.view.View; -public class BannerAd { +class BannerAd { public static void requestAd(View view) { - // Do nothing because this is the standard version. + // Do nothing because this is the standard flavor. + } + + public static void reloadAfterRotate(View view, Context applicationContext, String ad_id) { + // Do nothing because this is the standard flavor. } public static void hideAd(View view) { - // Do nothing because this is the standard version. + // Do nothing because this is the standard flavor. } public static void showAd(View view) { - // Do nothing because this is the standard version. + // Do nothing because this is the standard flavor. + } + + public static void pauseAd(View view) { + // Do nothing because this is the standard flavor. + } + + public static void resumeAd(View view) { + // Do nothing because this is the standard flavor. } } \ No newline at end of file