]> gitweb.stoutner.com Git - PrivacyBrowserAndroid.git/blobdiff - app/src/standard/java/com/stoutner/privacybrowser/BannerAd.java
Updates about_licenses, adding the full text of the Apache License 2.0 and the 3...
[PrivacyBrowserAndroid.git] / app / src / standard / java / com / stoutner / privacybrowser / BannerAd.java
index a6f98a6d159922e856b26782650ebaa40dbd1f7f..32b03783e92d7b7a9fd25487b69de7aaa5b0df20 100644 (file)
@@ -1,5 +1,5 @@
-/**
- * Copyright 2016 Soren Stoutner <soren@stoutner.com>.
+/*
+ * Copyright © 2016-2017 Soren Stoutner <soren@stoutner.com>.
  *
  * This file is part of Privacy Browser <https://www.stoutner.com/privacy-browser>.
  *
@@ -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