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

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: mounir's 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 38 matching lines...) Expand 10 before | Expand all | Expand 10 after
49 */ 49 */
50 public static final String OVERFLOW_OPENED_WITH_DATA_SAVER_SHOWN = 50 public static final String OVERFLOW_OPENED_WITH_DATA_SAVER_SHOWN =
51 "overflow_opened_data_saver_shown"; 51 "overflow_opened_data_saver_shown";
52 52
53 /** 53 /**
54 * The data saver footer was used (tapped). 54 * The data saver footer was used (tapped).
55 */ 55 */
56 public static final String DATA_SAVER_DETAIL_OPENED = "data_saver_overview_o pened"; 56 public static final String DATA_SAVER_DETAIL_OPENED = "data_saver_overview_o pened";
57 57
58 /** 58 /**
59 * The download button for a media element was displayed.
60 */
61 public static final String MEDIA_DOWNLOAD_BUTTON_DISPLAYED = "media_download _button_displayed";
62
63 /**
59 * Do not instantiate. 64 * Do not instantiate.
60 */ 65 */
61 private EventConstants() {} 66 private EventConstants() {}
62 } 67 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698