]> gitweb.stoutner.com Git - PrivacyBrowserAndroid.git/blobdiff - app/src/standard/java/com/stoutner/privacybrowser/BannerAd.java
Create Java subpackage folders.
[PrivacyBrowserAndroid.git] / app / src / standard / java / com / stoutner / privacybrowser / BannerAd.java
index 651c8971be617403fa523ff10f34c5e1c27824d3..caf6e62367659f3bf05ff320eac64d16500b8843 100644 (file)
 
 package com.stoutner.privacybrowser;
 
+import android.content.Context;
 import android.view.View;
 
 public 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