X-Git-Url: https://gitweb.stoutner.com/?a=blobdiff_plain;f=app%2Fsrc%2Fstandard%2Fjava%2Fcom%2Fstoutner%2Fprivacybrowser%2FBannerAd.java;h=caf6e62367659f3bf05ff320eac64d16500b8843;hb=ae2ee09aa7a2afc19f5603c9bc021f98888d7b78;hp=a6f98a6d159922e856b26782650ebaa40dbd1f7f;hpb=7d632afdd10cad5b4d62fce37707eaceebe260cb;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 a6f98a6d..caf6e623 100644 --- a/app/src/standard/java/com/stoutner/privacybrowser/BannerAd.java +++ b/app/src/standard/java/com/stoutner/privacybrowser/BannerAd.java @@ -22,28 +22,28 @@ package com.stoutner.privacybrowser; import android.content.Context; import android.view.View; -class BannerAd { - static void requestAd(View view) { +public class BannerAd { + public static void requestAd(View view) { // Do nothing because this is the standard flavor. } - static void reloadAfterRotate(View view, Context applicationContext, String ad_id) { + public static void reloadAfterRotate(View view, Context applicationContext, String ad_id) { // Do nothing because this is the standard flavor. } - static void hideAd(View view) { + public static void hideAd(View view) { // Do nothing because this is the standard flavor. } - static void showAd(View view) { + public static void showAd(View view) { // Do nothing because this is the standard flavor. } - static void pauseAd(View view) { + public static void pauseAd(View view) { // Do nothing because this is the standard flavor. } - static void resumeAd(View view) { + public static void resumeAd(View view) { // Do nothing because this is the standard flavor. } } \ No newline at end of file