X-Git-Url: https://gitweb.stoutner.com/?a=blobdiff_plain;f=app%2Fsrc%2Fstandard%2Fjava%2Fcom%2Fstoutner%2Fprivacybrowser%2FBannerAd.java;h=a6f98a6d159922e856b26782650ebaa40dbd1f7f;hb=bc6574b86391ed9c731835c18de7bd0a10de19f8;hp=69152689e1939b2642e2ce9808a8c6fae43c9e9b;hpb=cdbd0fea022e075e46906307cbf889cac5325dd5;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 69152689..a6f98a6d 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; class BannerAd { - public static void requestAd(View view) { - // Do nothing because this is the standard version. + static void requestAd(View view) { + // Do nothing because this is the standard flavor. } - public static void hideAd(View view) { - // Do nothing because this is the standard version. + static void reloadAfterRotate(View view, Context applicationContext, String ad_id) { + // Do nothing because this is the standard flavor. } - public static void showAd(View view) { - // Do nothing because this is the standard version. + static void hideAd(View view) { + // Do nothing because this is the standard flavor. + } + + static void showAd(View view) { + // Do nothing because this is the standard flavor. + } + + static void pauseAd(View view) { + // Do nothing because this is the standard flavor. + } + + static void resumeAd(View view) { + // Do nothing because this is the standard flavor. } } \ No newline at end of file