Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 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 | |
| 3 // found in the LICENSE file. | |
| 4 | |
| 5 package org.chromium.components.feature_engagement_tracker; | |
| 6 | |
| 7 /** | |
| 8 * EventConstants contains the String name of all in-product help events. | |
|
David Trainor- moved to gerrit
2017/04/17 23:03:41
Should these be mirrored in native as well? I can
shaktisahu
2017/04/19 02:39:11
Ok. I didn't think they are needed in native. Yea,
| |
| 9 */ | |
| 10 public final class EventConstants { | |
| 11 public static final String USER_HAS_SEEN_DINO = "user_has_seen_dino"; | |
| 12 public static final String DOWNLOAD_PAGE_STARTED = "download_page_started"; | |
| 13 | |
| 14 /** | |
| 15 * Do not instantiate. | |
| 16 */ | |
| 17 private EventConstants() {} | |
| 18 } | |
| OLD | NEW |