Matt Falkenhagen | 5cc65279 | 2018-06-21 10:34:33 | [diff] [blame] | 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 | #include "third_party/blink/public/common/features.h" |
| 6 | |
| 7 | namespace blink { |
| 8 | namespace features { |
| 9 | |
Ian Kilpatrick | e68ef11a | 2018-07-04 03:52:10 | [diff] [blame^] | 10 | // Enable LayoutNG. |
| 11 | const base::Feature kLayoutNG{"LayoutNG", base::FEATURE_DISABLED_BY_DEFAULT}; |
| 12 | |
Marijn Kruisselbrink | cde6463 | 2018-06-22 22:45:16 | [diff] [blame] | 13 | // Enable mojo Blob URL interface and better blob URL lifetime management. |
| 14 | // Can be enabled independently of NetworkService. |
| 15 | const base::Feature kMojoBlobURLs{"MojoBlobURLs", |
| 16 | base::FEATURE_DISABLED_BY_DEFAULT}; |
| 17 | |
Matt Falkenhagen | 5cc65279 | 2018-06-21 10:34:33 | [diff] [blame] | 18 | // Enable new service worker glue for NetworkService. Can be |
| 19 | // enabled independently of NetworkService. |
| 20 | const base::Feature kServiceWorkerServicification{ |
| 21 | "ServiceWorkerServicification", base::FEATURE_DISABLED_BY_DEFAULT}; |
| 22 | |
| 23 | } // namespace features |
| 24 | } // namespace blink |