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

Unified Diff: mobile/android/thirdparty/org/adblockplus/browser/AdblockPlusApiCallback.java

Issue 29588596: Issue 5919 - Adjust our code to the new messaging system (Closed)
Patch Set: Adding missing return statements Created Nov. 2, 2017, 10:12 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: mobile/android/thirdparty/org/adblockplus/browser/AdblockPlusApiCallback.java
===================================================================
--- a/mobile/android/thirdparty/org/adblockplus/browser/AdblockPlusApiCallback.java
+++ b/mobile/android/thirdparty/org/adblockplus/browser/AdblockPlusApiCallback.java
@@ -12,15 +12,15 @@
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with Adblock Plus. If not, see <http://www.gnu.org/licenses/>.
*/
package org.adblockplus.browser;
-import org.mozilla.gecko.util.NativeJSObject;
+import org.mozilla.gecko.util.GeckoBundle;
public interface AdblockPlusApiCallback
{
- public void onApiRequestSucceeded(NativeJSObject jsObject);
+ public void onApiRequestSucceeded(GeckoBundle bundle);
public void onApiRequestFailed(String errorMessage);
}

Powered by Google App Engine
This is Rietveld