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

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

Issue 2943983003: chrome/blink: Add functionality for in-product help for media elements. (Closed)
Patch Set: addressed comments Created 3 years, 5 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
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 * 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 32 matching lines...) Expand 10 before | Expand all | Expand 10 after
43 */ 43 */
44 public static final String OVERFLOW_OPENED_WITH_DATA_SAVER_SHOWN = 44 public static final String OVERFLOW_OPENED_WITH_DATA_SAVER_SHOWN =
45 "overflow_opened_data_saver_shown"; 45 "overflow_opened_data_saver_shown";
46 46
47 /** 47 /**
48 * The data saver footer was used (tapped). 48 * The data saver footer was used (tapped).
49 */ 49 */
50 public static final String DATA_SAVER_DETAIL_OPENED = "data_saver_overview_o pened"; 50 public static final String DATA_SAVER_DETAIL_OPENED = "data_saver_overview_o pened";
51 51
52 /** 52 /**
53 * The download button for a media element was displayed.
54 */
55 public static final String MEDIA_DOWNLOAD_BUTTON_DISPLAYED = "media_download _button_displayed";
56
57 /**
53 * Do not instantiate. 58 * Do not instantiate.
54 */ 59 */
55 private EventConstants() {} 60 private EventConstants() {}
56 } 61 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698