| 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_tracker/public/feature_list.h" | 5 #include "components/feature_engagement_tracker/public/feature_list.h" |
| 6 | 6 |
| 7 #include "components/feature_engagement_tracker/public/feature_constants.h" | 7 #include "components/feature_engagement_tracker/public/feature_constants.h" |
| 8 | 8 |
| 9 namespace feature_engagement_tracker { | 9 namespace feature_engagement_tracker { |
| 10 | 10 |
| 11 namespace { | 11 namespace { |
| 12 // Whenever a feature is added to |kAllFeatures|, it should also be added as | 12 // Whenever a feature is added to |kAllFeatures|, it should also be added as |
| 13 // DEFINE_VARIATION_PARAM below, and also added to the | 13 // DEFINE_VARIATION_PARAM below, and also added to the |
| 14 // |kIPHDemoModeChoiceVariations| array. | 14 // |kIPHDemoModeChoiceVariations| array. |
| 15 const base::Feature* kAllFeatures[] = { | 15 const base::Feature* kAllFeatures[] = { |
| 16 &kIPHDummyFeature, // Ensures non-empty array for all platforms. | 16 &kIPHDummyFeature, // Ensures non-empty array for all platforms. |
| 17 #if defined(OS_ANDROID) | 17 #if defined(OS_ANDROID) |
| 18 &kIPHDataSaverPreviewFeature, | 18 &kIPHDataSaverPreviewFeature, |
| 19 &kIPHDataSaverDetailFeature, | 19 &kIPHDataSaverDetailFeature, |
| 20 &kIPHDownloadPageFeature, | 20 &kIPHDownloadPageFeature, |
| 21 &kIPHDownloadHomeFeature, | 21 &kIPHDownloadHomeFeature, |
| 22 &kIPHMediaDownloadFeature, |
| 22 #endif // OS_ANDROID | 23 #endif // OS_ANDROID |
| 23 }; | 24 }; |
| 24 } // namespace | 25 } // namespace |
| 25 | 26 |
| 26 const char kIPHDemoModeFeatureChoiceParam[] = "chosen_feature"; | 27 const char kIPHDemoModeFeatureChoiceParam[] = "chosen_feature"; |
| 27 | 28 |
| 29 const char kEnableMediaDownloadIPH[] = "enable_media_download_iph"; |
| 30 |
| 28 std::vector<const base::Feature*> GetAllFeatures() { | 31 std::vector<const base::Feature*> GetAllFeatures() { |
| 29 return std::vector<const base::Feature*>( | 32 return std::vector<const base::Feature*>( |
| 30 kAllFeatures, kAllFeatures + arraysize(kAllFeatures)); | 33 kAllFeatures, kAllFeatures + arraysize(kAllFeatures)); |
| 31 } | 34 } |
| 32 | 35 |
| 33 } // namespace feature_engagement_tracker | 36 } // namespace feature_engagement_tracker |
| OLD | NEW |