blob: 6d5ae4ce486b5bb2bfee4e2cb00ea43c3a3d9ae1 [file] [log] [blame]
Ahmed Fakhry4f567e692018-10-16 15:51:081// Copyright 2018 The Chromium Authors. All rights reserved.
2// Use of this source code is governed by a BSD-style license that can be
3// found in the LICENSE file.
4
5// This file defines the browser-specific base::FeatureList features that are
6// not shared with other process types.
7
8#ifndef CHROME_BROWSER_BROWSER_FEATURES_H_
9#define CHROME_BROWSER_BROWSER_FEATURES_H_
10
11#include "base/feature_list.h"
Dan Beam3b889302018-12-01 01:40:5012#include "build/build_config.h"
Ahmed Fakhry4f567e692018-10-16 15:51:0813
14namespace features {
15
16// All features in alphabetical order. The features should be documented
17// alongside the definition of their values in the .cc file.
18
19#if defined(OS_CHROMEOS)
20extern const base::Feature kDoubleTapToZoomInTabletMode;
21#endif
22
James Vecore30f589c22020-04-03 23:16:1723#if !defined(OS_ANDROID)
24extern const base::Feature kNearbySharing;
25#endif
26
Yann Dago9325f96e2020-01-24 16:58:3727#if !defined(OS_ANDROID) && !defined(OS_CHROMEOS)
28extern const base::Feature kUserDataSnapshot;
29#endif
30
Ahmed Fakhry4f567e692018-10-16 15:51:0831} // namespace features
32
33#endif // CHROME_BROWSER_BROWSER_FEATURES_H_