| OLD | NEW |
| 1 // Copyright 2017 The Chromium Authors. All rights reserved. | 1 // Copyright 2017 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 package org.chromium.components.feature_engagement_tracker; | 5 package org.chromium.components.feature_engagement_tracker; |
| 6 | 6 |
| 7 /** | 7 /** |
| 8 * FeatureConstants contains the String name of all base::Feature in-product hel
p features declared | 8 * FeatureConstants contains the String name of all base::Feature in-product hel
p features declared |
| 9 * in //components/feature_engagement_tracker/public/feature_constants.h. | 9 * in //components/feature_engagement_tracker/public/feature_constants.h. |
| 10 */ | 10 */ |
| 11 public final class FeatureConstants { | 11 public final class FeatureConstants { |
| 12 public static final String DUMMY_FEATURE = "IPH_DummyFeature"; | 12 public static final String DOWNLOAD_PAGE_FEATURE = "IPH_DownloadPage"; |
| 13 | 13 |
| 14 /** | 14 /** |
| 15 * Do not instantiate. | 15 * Do not instantiate. |
| 16 */ | 16 */ |
| 17 private FeatureConstants() {} | 17 private FeatureConstants() {} |
| 18 } | 18 } |
| OLD | NEW |