author | Eugen Sawin <esawin@mozilla.com> |
Fri, 27 Apr 2018 23:05:14 +0200 | |
changeset 416143 | 315e0039f7e475c8a67f743cff7ef8804946f13f |
parent 416142 | ba50d50797ede3964b69eb1f52d48937b7ea92a8 |
child 416144 | 62eb4b67db486bdb546085592bfcce517984a80b |
push id | 33917 |
push user | apavel@mozilla.com |
push date | Sat, 28 Apr 2018 17:30:55 +0000 |
treeherder | mozilla-central@08f68e2c892c [default view] [failures only] |
perfherder | [talos] [build metrics] [platform microbench] (compared to previous push) |
reviewers | me |
bugs | 1437551 |
milestone | 61.0a1 |
first release with | nightly linux32
nightly linux64
nightly mac
nightly win32
nightly win64
|
last release without | nightly linux32
nightly linux64
nightly mac
nightly win32
nightly win64
|
mobile/android/geckoview/src/main/java/org/mozilla/geckoview/RuntimeTelemetry.java | file | annotate | diff | comparison | revisions |
--- a/mobile/android/geckoview/src/main/java/org/mozilla/geckoview/RuntimeTelemetry.java +++ b/mobile/android/geckoview/src/main/java/org/mozilla/geckoview/RuntimeTelemetry.java @@ -77,34 +77,34 @@ public final class RuntimeTelemetry { mRuntime = runtime; mEventDispatcher = EventDispatcher.getInstance(); } /** * Retrieve all telemetry snapshots. * * @param dataset The dataset type to retreive. - * One of {@link #RuntimeTelemetry.DATASET_BASE DATASET_*} flags. + * One of {@link #DATASET_BASE DATASET_*} flags. * @param clear Whether the retrieved snapshots should be cleared. * @param response Used to return the async response. */ public void getSnapshots( final @DatasetType int dataset, final boolean clear, final @NonNull GeckoResponse<GeckoBundle> response) { getSnapshots(SNAPSHOT_ALL, dataset, clear, response); } /** * Retrieve the requested telemetry snapshots. * * @param types The requested snapshot types. - * One or more of {@link #RuntimeTelemetry.SNAPSHOT_HISTOGRAMS SNAPSHOT_*} flags. + * One or more of {@link #SNAPSHOT_HISTOGRAMS SNAPSHOT_*} flags. * @param dataset The dataset type to retreive. - * One of {@link #RuntimeTelemetry.DATASET_BASE DATASET_*} flags. + * One of {@link #DATASET_BASE DATASET_*} flags. * @param clear Whether the retrieved snapshots should be cleared. * @param response Used to return the async response. */ public void getSnapshots( final @SnapshotType int types, final @DatasetType int dataset, final boolean clear, final @NonNull GeckoResponse<GeckoBundle> response) {