summaryrefslogtreecommitdiff
path: root/chromium/components/feature_engagement_tracker/internal/feature_list.cc
blob: ebdef0a0cf3eec59933ae77c4f5f4a98ca9d473f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
/// Copyright 2017 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

#include "components/feature_engagement_tracker/internal/feature_list.h"

#include "base/feature_list.h"
#include "components/feature_engagement_tracker/public/feature_constants.h"

namespace feature_engagement_tracker {

namespace {

const base::Feature* kAllFeatures[] = {&kIPHDummyFeature};

}  // namespace

std::vector<const base::Feature*> GetAllFeatures() {
  return std::vector<const base::Feature*>(
      kAllFeatures, kAllFeatures + arraysize(kAllFeatures));
}

}  // namespace feature_engagement_tracker