| OLD | NEW |
| 1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 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 #ifndef EXTENSIONS_COMMON_FEATURES_BEHAVIOR_FEATURE_H_ | 5 #ifndef EXTENSIONS_COMMON_FEATURES_BEHAVIOR_FEATURE_H_ |
| 6 #define EXTENSIONS_COMMON_FEATURES_BEHAVIOR_FEATURE_H_ | 6 #define EXTENSIONS_COMMON_FEATURES_BEHAVIOR_FEATURE_H_ |
| 7 | 7 |
| 8 namespace extensions { | 8 namespace extensions { |
| 9 | 9 |
| 10 // Contains constants corresponding to keys in _behavior_features.json. | 10 // Contains constants corresponding to keys in _behavior_features.json. |
| 11 // One day we might want to auto generate these. | 11 // One day we might want to auto generate these. |
| 12 namespace behavior_feature { | 12 namespace behavior_feature { |
| 13 | 13 |
| 14 extern const char kWhitelistedForIncognito[]; | 14 extern const char kWhitelistedForIncognito[]; |
| 15 extern const char kDoNotSync[]; | 15 extern const char kDoNotSync[]; |
| 16 extern const char kZoomWithoutBubble[]; | 16 extern const char kZoomWithoutBubble[]; |
| 17 extern const char kAllowUsbDevicesPermissionInterfaceClass[]; | 17 extern const char kAllowUsbDevicesPermissionInterfaceClass[]; |
| 18 extern const char kSigninScreen[]; | 18 extern const char kSigninScreen[]; |
| 19 extern const char kWhitelistedForNetworkingOncApi[]; |
| 19 | 20 |
| 20 } // namespace behavior_feature | 21 } // namespace behavior_feature |
| 21 | 22 |
| 22 } // namespace extensions | 23 } // namespace extensions |
| 23 | 24 |
| 24 #endif // EXTENSIONS_COMMON_FEATURES_BEHAVIOR_FEATURE_H_ | 25 #endif // EXTENSIONS_COMMON_FEATURES_BEHAVIOR_FEATURE_H_ |
| OLD | NEW |