| OLD | NEW |
| 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/public/feature_constants.h" | 5 #include "components/feature_engagement/public/feature_constants.h" |
| 6 | 6 |
| 7 namespace feature_engagement { | 7 namespace feature_engagement { |
| 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 kIPHDataSaverDetailFeature{ | 16 const base::Feature kIPHDataSaverDetailFeature{ |
| 17 "IPH_DataSaverDetail", base::FEATURE_DISABLED_BY_DEFAULT}; | 17 "IPH_DataSaverDetail", base::FEATURE_DISABLED_BY_DEFAULT}; |
| 18 const base::Feature kIPHDataSaverPreviewFeature{ | 18 const base::Feature kIPHDataSaverPreviewFeature{ |
| 19 "IPH_DataSaverPreview", base::FEATURE_DISABLED_BY_DEFAULT}; | 19 "IPH_DataSaverPreview", base::FEATURE_DISABLED_BY_DEFAULT}; |
| 20 const base::Feature kIPHDownloadHomeFeature{"IPH_DownloadHome", | 20 const base::Feature kIPHDownloadHomeFeature{"IPH_DownloadHome", |
| 21 base::FEATURE_DISABLED_BY_DEFAULT}; | 21 base::FEATURE_DISABLED_BY_DEFAULT}; |
| 22 const base::Feature kIPHDownloadPageFeature{"IPH_DownloadPage", | 22 const base::Feature kIPHDownloadPageFeature{"IPH_DownloadPage", |
| 23 base::FEATURE_DISABLED_BY_DEFAULT}; | 23 base::FEATURE_DISABLED_BY_DEFAULT}; |
| 24 const base::Feature kIPHDownloadPageScreenshotFeature{ | 24 const base::Feature kIPHDownloadPageScreenshotFeature{ |
| 25 "IPH_DownloadPageScreenshot", base::FEATURE_DISABLED_BY_DEFAULT}; | 25 "IPH_DownloadPageScreenshot", base::FEATURE_DISABLED_BY_DEFAULT}; |
| 26 const base::Feature kIPHChromeHomeExpandFeature{ | 26 const base::Feature kIPHChromeHomeExpandFeature{ |
| 27 "IPH_ChromeHomeExpand", base::FEATURE_DISABLED_BY_DEFAULT}; | 27 "IPH_ChromeHomeExpand", base::FEATURE_DISABLED_BY_DEFAULT}; |
| 28 const base::Feature kIPHMediaDownloadFeature{"IPH_MediaDownload", |
| 29 base::FEATURE_DISABLED_BY_DEFAULT}; |
| 28 #endif // defined(OS_ANDROID) | 30 #endif // defined(OS_ANDROID) |
| 29 | 31 |
| 30 #if defined(OS_WIN) || defined(OS_LINUX) | 32 #if defined(OS_WIN) || defined(OS_LINUX) |
| 31 const base::Feature kIPHIncognitoWindowFeature{ | 33 const base::Feature kIPHIncognitoWindowFeature{ |
| 32 "IPH_IncognitoWindow", base::FEATURE_DISABLED_BY_DEFAULT}; | 34 "IPH_IncognitoWindow", base::FEATURE_DISABLED_BY_DEFAULT}; |
| 33 const base::Feature kIPHNewTabFeature{"IPH_NewTab", | 35 const base::Feature kIPHNewTabFeature{"IPH_NewTab", |
| 34 base::FEATURE_DISABLED_BY_DEFAULT}; | 36 base::FEATURE_DISABLED_BY_DEFAULT}; |
| 35 #endif // defined(OS_WIN) || defined(OS_LINUX) | 37 #endif // defined(OS_WIN) || defined(OS_LINUX) |
| 36 | 38 |
| 37 #if defined(OS_IOS) | 39 #if defined(OS_IOS) |
| 38 const base::Feature kIPHNewTabTipFeature{"IPH_NewTabTip", | 40 const base::Feature kIPHNewTabTipFeature{"IPH_NewTabTip", |
| 39 base::FEATURE_DISABLED_BY_DEFAULT}; | 41 base::FEATURE_DISABLED_BY_DEFAULT}; |
| 40 const base::Feature kIPHNewIncognitoTabTipFeature{ | 42 const base::Feature kIPHNewIncognitoTabTipFeature{ |
| 41 "IPH_NewIncognitoTabTip", base::FEATURE_DISABLED_BY_DEFAULT}; | 43 "IPH_NewIncognitoTabTip", base::FEATURE_DISABLED_BY_DEFAULT}; |
| 42 const base::Feature kIPHBadgedReadingListFeature{ | 44 const base::Feature kIPHBadgedReadingListFeature{ |
| 43 "IPH_BadgedReadingList", base::FEATURE_DISABLED_BY_DEFAULT}; | 45 "IPH_BadgedReadingList", base::FEATURE_DISABLED_BY_DEFAULT}; |
| 44 #endif // defined(OS_IOS) | 46 #endif // defined(OS_IOS) |
| 45 | 47 |
| 46 } // namespace feature_engagement | 48 } // namespace feature_engagement |
| OLD | NEW |