From f994854ec039ecb44e6055bd5d70bd6a3a0a4885 Mon Sep 17 00:00:00 2001 From: Nick Alexander Date: Thu, 15 Feb 2018 13:01:08 -0800 Subject: [PATCH] Bug 1422019 - Fix errors in |mach android archive-geckoview|. r=snorp MozReview-Commit-ID: Gzbv1Y6agsM --- .../src/main/java/org/mozilla/geckoview/GeckoSession.java | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/mobile/android/geckoview/src/main/java/org/mozilla/geckoview/GeckoSession.java b/mobile/android/geckoview/src/main/java/org/mozilla/geckoview/GeckoSession.java index 92930375e56f..4c564e4f3c39 100644 --- a/mobile/android/geckoview/src/main/java/org/mozilla/geckoview/GeckoSession.java +++ b/mobile/android/geckoview/src/main/java/org/mozilla/geckoview/GeckoSession.java @@ -791,7 +791,7 @@ public class GeckoSession extends LayerSession /** * Set the tracking protection callback handler. * This will replace the current handler. - * @param listener An implementation of TrackingProtectionDelegate. + * @param delegate An implementation of TrackingProtectionDelegate. */ public void setTrackingProtectionDelegate(TrackingProtectionDelegate delegate) { mTrackingProtectionHandler.setListener(delegate, this); @@ -1934,7 +1934,7 @@ public class GeckoSession extends LayerSession * @param session The GeckoSession that initiated the callback. * @param uri The URI of the blocked element. * @param categories The tracker categories of the blocked element. - * One or more of the {@link #CATEGORY_AD CATEGORY_*} + * One or more of the {@link TrackingProtectionDelegate#CATEGORY_AD} * flags. */ void onTrackerBlocked(GeckoSession session, String uri, int categories); @@ -1943,7 +1943,7 @@ public class GeckoSession extends LayerSession /** * Enable tracking protection. * @param categories The categories of trackers that should be blocked. - * Use one or more of the {@link #CATEGORY_AD CATEGORY_*} + * Use one or more of the {@link TrackingProtectionDelegate#CATEGORY_AD} * flags. **/ public void enableTrackingProtection(int categories) {