OLD | NEW |
| (Empty) |
1 // Copyright 2015 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 #ifndef CHROME_COMMON_EXTENSIONS_FEATURES_FEATURE_UTIL_H_ | |
6 #define CHROME_COMMON_EXTENSIONS_FEATURES_FEATURE_UTIL_H_ | |
7 | |
8 namespace extensions { | |
9 namespace feature_util { | |
10 | |
11 // Returns true if service workers are enabled for extension schemes. | |
12 // TODO(lazyboy): Remove this function once extension Service Workers | |
13 // are enabled by default for a while. | |
14 bool ExtensionServiceWorkersEnabled(); | |
15 | |
16 } // namespace feature_util | |
17 } // namespace extensions | |
18 | |
19 #endif // CHROME_COMMON_EXTENSIONS_FEATURES_FEATURE_UTIL_H_ | |
OLD | NEW |