Rietveld Code Review Tool
Help | Bug tracker | Discussion group | Source code

Unified Diff: src/org/adblockplus/android/AdblockPlus.java

Issue 5431458994847744: Automatically enable acceptable ads and notify the user about it (Closed)
Patch Set: Created Nov. 26, 2013, 10:39 a.m.
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: src/org/adblockplus/android/AdblockPlus.java
===================================================================
--- a/src/org/adblockplus/android/AdblockPlus.java
+++ b/src/org/adblockplus/android/AdblockPlus.java
@@ -291,6 +291,16 @@
return documentationLink.replace("%LINK%", "acceptable_ads").replace("%LANG%", locale);
}
+ public void setNotifiedAboutAcceptableAds(boolean notified)
+ {
+ abpEngine.setNotifiedAboutAcceptableAds(notified);
+ }
+
+ public boolean isNotifiedAboutAcceptableAds()
+ {
+ return abpEngine.isNotifiedAboutAcceptableAds();
+ }
+
/**
* Returns ElemHide selectors for domain.
*

Powered by Google App Engine
This is Rietveld