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

github.com/mapsme/omim.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authoralexzatsepin <az@mapswithme.com>2017-03-29 17:27:13 +0300
committerVladimir Byko-Ianko <bykoianko@gmail.com>2017-04-12 09:11:27 +0300
commitb985ec1c19ef769e1d4cccad3e0b2d57e5e61593 (patch)
tree73f06a2807cd6850022edae55e5a61884a1890f7 /android/src/com/mapswithme/maps/ads/AdTracker.java
parent12e8f8866d47c4019e8de546c36d10357082965b (diff)
[android] Made a composite banner key for cache
Diffstat (limited to 'android/src/com/mapswithme/maps/ads/AdTracker.java')
-rw-r--r--android/src/com/mapswithme/maps/ads/AdTracker.java8
1 files changed, 4 insertions, 4 deletions
diff --git a/android/src/com/mapswithme/maps/ads/AdTracker.java b/android/src/com/mapswithme/maps/ads/AdTracker.java
index 12dc5c5eae..6d5bfe64a2 100644
--- a/android/src/com/mapswithme/maps/ads/AdTracker.java
+++ b/android/src/com/mapswithme/maps/ads/AdTracker.java
@@ -9,8 +9,8 @@ import android.support.annotation.NonNull;
*/
public interface AdTracker
{
- void onViewShown(@NonNull String bannerId);
- void onViewHidden(@NonNull String bannerId);
- void onContentObtained(@NonNull String bannerId);
- boolean isImpressionGood(@NonNull String bannerId);
+ void onViewShown(@NonNull BannerKey key);
+ void onViewHidden(@NonNull BannerKey key);
+ void onContentObtained(@NonNull BannerKey key);
+ boolean isImpressionGood(@NonNull BannerKey key);
}