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

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

Issue 2943983003: chrome/blink: Add functionality for in-product help for media elements. (Closed)
Patch Set: .. Created 3 years, 4 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; 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
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 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698