[M85 Dev][EFL] Fix errors to generate ninja files
[platform/framework/web/chromium-efl.git] / chrome / browser / browser_features.h
1 // 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"
12 #include "build/build_config.h"
13
14 namespace 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)
20 extern const base::Feature kDoubleTapToZoomInTabletMode;
21 #endif
22
23 #if !defined(OS_ANDROID)
24 extern const base::Feature kNearbySharing;
25 #endif
26
27 #if !defined(OS_ANDROID) && !defined(OS_CHROMEOS)
28 extern const base::Feature kUserDataSnapshot;
29 #endif
30
31 }  // namespace features
32
33 #endif  // CHROME_BROWSER_BROWSER_FEATURES_H_