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

Unified Diff: src/org/adblockplus/libadblockplus/ShowNotificationCallback.java

Issue 29329928: Issue 3297 - Fix issues introduced by recent libadblockplus changes and update dependencies (Closed)
Patch Set: MinSDK and copy'n'paste Created Nov. 20, 2015, 12:19 p.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
« no previous file with comments | « src/org/adblockplus/libadblockplus/FilterEngine.java ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/org/adblockplus/libadblockplus/ShowNotificationCallback.java
diff --git a/src/org/adblockplus/libadblockplus/UpdateAvailableCallback.java b/src/org/adblockplus/libadblockplus/ShowNotificationCallback.java
similarity index 89%
copy from src/org/adblockplus/libadblockplus/UpdateAvailableCallback.java
copy to src/org/adblockplus/libadblockplus/ShowNotificationCallback.java
index b1fcb94d2e11904b84aa3fd63cca35d6c235c6ad..51ce8eff7c594e352faeefa71a1400c9de61de3a 100644
--- a/src/org/adblockplus/libadblockplus/UpdateAvailableCallback.java
+++ b/src/org/adblockplus/libadblockplus/ShowNotificationCallback.java
@@ -17,7 +17,7 @@
package org.adblockplus.libadblockplus;
-public abstract class UpdateAvailableCallback implements Disposable
+public abstract class ShowNotificationCallback implements Disposable
{
private final Disposer disposer;
protected final long ptr;
@@ -28,13 +28,13 @@ public abstract class UpdateAvailableCallback implements Disposable
registerNatives();
}
- public UpdateAvailableCallback()
+ public ShowNotificationCallback()
{
this.ptr = ctor(this);
this.disposer = new Disposer(this, new DisposeWrapper(this.ptr));
}
- public abstract void updateAvailableCallback(String url);
+ public abstract void showNotificationCallback(Notification jsValue);
@Override
public void dispose()
« no previous file with comments | « src/org/adblockplus/libadblockplus/FilterEngine.java ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld