| Index: chrome/android/junit/src/org/chromium/chrome/browser/DisableHistogramsRule.java
|
| diff --git a/chrome/android/junit/src/org/chromium/chrome/browser/DisableHistogramsRule.java b/chrome/android/junit/src/org/chromium/chrome/browser/DisableHistogramsRule.java
|
| index 506da77e61f8f72153dc512e5d2a64daa84ae2c0..11adc71dc04c088c9845d55a99eed3c2e9ccc41e 100644
|
| --- a/chrome/android/junit/src/org/chromium/chrome/browser/DisableHistogramsRule.java
|
| +++ b/chrome/android/junit/src/org/chromium/chrome/browser/DisableHistogramsRule.java
|
| @@ -1,4 +1,4 @@
|
| -// Copyright 2016 The Chromium Authors. All rights reserved.
|
| +// Copyright 2017 The Chromium Authors. All rights reserved.
|
| // Use of this source code is governed by a BSD-style license that can be
|
| // found in the LICENSE file.
|
|
|
| @@ -9,10 +9,9 @@ import org.junit.rules.ExternalResource;
|
| import org.chromium.base.metrics.RecordHistogram;
|
|
|
| /**
|
| - * Disables histogram recording for the duration of the tests.
|
| + * Disables user action recording for the duration of the tests.
|
| */
|
| -public class DisableHistogramsRule extends ExternalResource {
|
| -
|
| +public class DisableHistogramRule extends ExternalResource {
|
| @Override
|
| protected void before() throws Throwable {
|
| RecordHistogram.setDisabledForTests(true);
|
| @@ -22,4 +21,4 @@ public class DisableHistogramsRule extends ExternalResource {
|
| protected void after() {
|
| RecordHistogram.setDisabledForTests(false);
|
| }
|
| -}
|
| +}
|
|
|