-
Notifications
You must be signed in to change notification settings - Fork 34
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
AB-2916 using WhoTracksMe to show tracker informarions
- Loading branch information
Showing
6 changed files
with
162 additions
and
77 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
9 changes: 8 additions & 1 deletion
9
app/src/cliqz/java/com/cliqz/browser/controlcenter/TrackerDetailsModel.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,15 +1,22 @@ | ||
package com.cliqz.browser.controlcenter; | ||
|
||
import androidx.annotation.NonNull; | ||
|
||
/** | ||
* Created by Ravjit on 09/08/16. | ||
*/ | ||
@SuppressWarnings("WeakerAccess") | ||
public class TrackerDetailsModel { | ||
public final String companyName; | ||
public final int trackerCount; | ||
public final String wtm; | ||
|
||
public TrackerDetailsModel(String companyName, int trackerCount) { | ||
public TrackerDetailsModel(@NonNull String companyName, | ||
int trackerCount, | ||
@NonNull String wtm) { | ||
this.companyName = companyName; | ||
this.trackerCount = trackerCount; | ||
this.wtm = wtm; | ||
} | ||
|
||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.