Welcome to mirror list, hosted at ThFree Co, Russian Federation.

AdRegistrator.java « ads « maps « mapswithme « com « src « android - github.com/mapsme/omim.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 8c8eb7360696bf93851d39045746efbbd02535de (plain)
1
2
3
4
5
6
7
8
9
10
11
12
package com.mapswithme.maps.ads;

import android.support.annotation.NonNull;
import android.view.View;

import com.mopub.nativeads.BaseNativeAd;

public interface AdRegistrator
{
  void registerView(@NonNull BaseNativeAd ad, @NonNull View view);
  void unregisterView(@NonNull BaseNativeAd ad, @NonNull View view);
}