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

Side by Side Diff: components/feature_engagement_tracker/public/feature_constants.cc

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 #include "components/feature_engagement_tracker/public/feature_constants.h" 5 #include "components/feature_engagement_tracker/public/feature_constants.h"
6 6
7 namespace feature_engagement_tracker { 7 namespace feature_engagement_tracker {
8 8
9 const base::Feature kIPHDemoMode{"IPH_DemoMode", 9 const base::Feature kIPHDemoMode{"IPH_DemoMode",
10 base::FEATURE_DISABLED_BY_DEFAULT}; 10 base::FEATURE_DISABLED_BY_DEFAULT};
11 11
12 const base::Feature kIPHDummyFeature{"IPH_Dummy", 12 const base::Feature kIPHDummyFeature{"IPH_Dummy",
13 base::FEATURE_DISABLED_BY_DEFAULT}; 13 base::FEATURE_DISABLED_BY_DEFAULT};
14 14
15 #if defined(OS_ANDROID) 15 #if defined(OS_ANDROID)
16 const base::Feature kIPHDataSaverPreviewFeature{ 16 const base::Feature kIPHDataSaverPreviewFeature{
17 "IPH_DataSaverPreview", base::FEATURE_DISABLED_BY_DEFAULT}; 17 "IPH_DataSaverPreview", base::FEATURE_DISABLED_BY_DEFAULT};
18 const base::Feature kIPHDataSaverDetailFeature{ 18 const base::Feature kIPHDataSaverDetailFeature{
19 "IPH_DataSaverDetail", base::FEATURE_DISABLED_BY_DEFAULT}; 19 "IPH_DataSaverDetail", base::FEATURE_DISABLED_BY_DEFAULT};
20 const base::Feature kIPHDownloadPageFeature{"IPH_DownloadPage", 20 const base::Feature kIPHDownloadPageFeature{"IPH_DownloadPage",
21 base::FEATURE_DISABLED_BY_DEFAULT}; 21 base::FEATURE_DISABLED_BY_DEFAULT};
22 const base::Feature kIPHDownloadHomeFeature{"IPH_DownloadHome", 22 const base::Feature kIPHDownloadHomeFeature{"IPH_DownloadHome",
23 base::FEATURE_DISABLED_BY_DEFAULT}; 23 base::FEATURE_DISABLED_BY_DEFAULT};
24 const base::Feature kIPHMediaDownloadFeature{"IPH_MediaDownload",
25 base::FEATURE_DISABLED_BY_DEFAULT};
24 #endif // OS_ANDROID 26 #endif // OS_ANDROID
25 27
26 } // namespace feature_engagement_tracker 28 } // namespace feature_engagement_tracker
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698