| 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; | 5 package org.chromium.components.feature_engagement; |
| 6 | 6 |
| 7 /** | 7 /** |
| 8 * EventConstants contains the String name of all in-product help events. | 8 * EventConstants contains the String name of all in-product help events. |
| 9 */ | 9 */ |
| 10 public final class EventConstants { | 10 public final class EventConstants { |
| (...skipping 43 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 54 */ | 54 */ |
| 55 public static final String OVERFLOW_OPENED_WITH_DATA_SAVER_SHOWN = | 55 public static final String OVERFLOW_OPENED_WITH_DATA_SAVER_SHOWN = |
| 56 "overflow_opened_data_saver_shown"; | 56 "overflow_opened_data_saver_shown"; |
| 57 | 57 |
| 58 /** | 58 /** |
| 59 * The data saver footer was used (tapped). | 59 * The data saver footer was used (tapped). |
| 60 */ | 60 */ |
| 61 public static final String DATA_SAVER_DETAIL_OPENED = "data_saver_overview_o
pened"; | 61 public static final String DATA_SAVER_DETAIL_OPENED = "data_saver_overview_o
pened"; |
| 62 | 62 |
| 63 /** | 63 /** |
| 64 * The download button for a media element was displayed. |
| 65 */ |
| 66 public static final String MEDIA_DOWNLOAD_BUTTON_DISPLAYED = "media_download
_button_displayed"; |
| 67 |
| 68 /** |
| 64 * Do not instantiate. | 69 * Do not instantiate. |
| 65 */ | 70 */ |
| 66 private EventConstants() {} | 71 private EventConstants() {} |
| 67 } | 72 } |
| OLD | NEW |