summaryrefslogtreecommitdiff
path: root/chromium/components/feature_engagement_tracker/public/feature_constants.h
blob: c26608a4247d86c941b7ad6d45c943c2240d4a91 (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.

#ifndef COMPONENTS_FEATURE_ENGAGEMENT_TRACKER_PUBLIC_FEATURE_CONSTANTS_H_
#define COMPONENTS_FEATURE_ENGAGEMENT_TRACKER_PUBLIC_FEATURE_CONSTANTS_H_

#include "base/feature_list.h"

namespace feature_engagement_tracker {

// A feature for enabling a demonstration mode for In-Product Help.
extern const base::Feature kIPHDemoMode;

// All the features declared below should also be declared in the Java
// version: org.chromium.components.feature_engagement_tracker.FeatureConstants.

// A dummy feature until real features start using the backend.
extern const base::Feature kIPHDummyFeature;

}  // namespace feature_engagement_tracker

#endif  // COMPONENTS_FEATURE_ENGAGEMENT_TRACKER_PUBLIC_FEATURE_CONSTANTS_H_