Chromium Code Reviews| 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_constants.h" | 5 #include "components/feature_engagement_tracker/public/feature_constants.h" |
| 6 | 6 |
| 7 #include "base/feature_list.h" | 7 #include "base/feature_list.h" |
| 8 | 8 |
| 9 namespace feature_engagement_tracker { | 9 namespace feature_engagement_tracker { |
| 10 | 10 |
| 11 const base::Feature kIPHDemoMode{"IPH_DemoMode", | 11 const base::Feature kIPHDemoMode{"IPH_DemoMode", |
| 12 base::FEATURE_DISABLED_BY_DEFAULT}; | 12 base::FEATURE_DISABLED_BY_DEFAULT}; |
| 13 | 13 |
| 14 const base::Feature kIPHDummyFeature{"IPH_DummyFeature", | 14 const base::Feature kIPHDummyFeature{"IPH_DummyFeature", |
| 15 base::FEATURE_DISABLED_BY_DEFAULT}; | 15 base::FEATURE_DISABLED_BY_DEFAULT}; |
| 16 | 16 |
| 17 const base::Feature kIPHDataSaverPreview{"IPH_DataSaverPreview", | |
| 18 base::FEATURE_DISABLED_BY_DEFAULT}; | |
|
gone
2017/04/18 21:05:19
Should this be alphabetized?
David Trainor- moved to gerrit
2017/04/25 05:01:05
Left the demo mode feature above since the header
| |
| 19 | |
| 17 } // namespace feature_engagement_tracker | 20 } // namespace feature_engagement_tracker |
| OLD | NEW |