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

Side by Side Diff: components/feature_engagement/public/android/java/src/org/chromium/components/feature_engagement/FeatureConstants.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 * FeatureConstants contains the String name of all base::Feature in-product hel p features declared 8 * FeatureConstants contains the String name of all base::Feature in-product hel p features declared
9 * in //components/feature_engagement/public/feature_constants.h. 9 * in //components/feature_engagement/public/feature_constants.h.
10 */ 10 */
11 public final class FeatureConstants { 11 public final class FeatureConstants {
12 public static final String DOWNLOAD_PAGE_FEATURE = "IPH_DownloadPage"; 12 public static final String DOWNLOAD_PAGE_FEATURE = "IPH_DownloadPage";
13 public static final String DOWNLOAD_PAGE_SCREENSHOT_FEATURE = "IPH_DownloadP ageScreenshot"; 13 public static final String DOWNLOAD_PAGE_SCREENSHOT_FEATURE = "IPH_DownloadP ageScreenshot";
14 public static final String DOWNLOAD_HOME_FEATURE = "IPH_DownloadHome"; 14 public static final String DOWNLOAD_HOME_FEATURE = "IPH_DownloadHome";
15 public static final String CHROME_HOME_EXPAND_FEATURE = "IPH_ChromeHomeExpan d"; 15 public static final String CHROME_HOME_EXPAND_FEATURE = "IPH_ChromeHomeExpan d";
16 public static final String DATA_SAVER_PREVIEW_FEATURE = "IPH_DataSaverPrevie w"; 16 public static final String DATA_SAVER_PREVIEW_FEATURE = "IPH_DataSaverPrevie w";
17 public static final String DATA_SAVER_DETAIL_FEATURE = "IPH_DataSaverDetail" ; 17 public static final String DATA_SAVER_DETAIL_FEATURE = "IPH_DataSaverDetail" ;
18 18
19 public static final String MEDIA_DOWNLOAD_FEATURE = "IPH_MediaDownload";
20
19 /** 21 /**
20 * Do not instantiate. 22 * Do not instantiate.
21 */ 23 */
22 private FeatureConstants() {} 24 private FeatureConstants() {}
23 } 25 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698