Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(264)

Side by Side Diff: components/feature_engagement_tracker/public/android/java/src/org/chromium/components/feature_engagement_tracker/EventConstants.java

Issue 2814843006: IPH - Added triggers for Download page (Closed)
Patch Set: nits Created 3 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
(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.
9 */
10 public final class EventConstants {
11 /**
12 * The page load has failed and user has landed on an offline dino page.
13 */
14 public static final String USER_HAS_SEEN_DINO = "user_has_seen_dino";
15
16 /**
17 * The user has started downloading a page.
18 */
19 public static final String DOWNLOAD_PAGE_STARTED = "download_page_started";
20
21 /**
22 * Do not instantiate.
23 */
24 private EventConstants() {}
25 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698