]> gitweb.stoutner.com Git - PrivacyBrowserAndroid.git/blobdiff - app/src/standard/java/com/stoutner/privacybrowser/BannerAd.java
Update adView to use a SMART_BANNER for the free flavor.
[PrivacyBrowserAndroid.git] / app / src / standard / java / com / stoutner / privacybrowser / BannerAd.java
index 69152689e1939b2642e2ce9808a8c6fae43c9e9b..1afe688addd7dd3de22cd070c695b0b0188a9225 100644 (file)
 
 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.
+        // 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