blob: 39c13644e5e08e8994cd6ff7476b88926828bf5d [file] [log] [blame]
Matt Falkenhagen5cc652792018-06-21 10:34:331// 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
7namespace blink {
8namespace features {
9
Ian Kilpatricke68ef11a2018-07-04 03:52:1010// Enable LayoutNG.
11const base::Feature kLayoutNG{"LayoutNG", base::FEATURE_DISABLED_BY_DEFAULT};
12
Marijn Kruisselbrinkcde64632018-06-22 22:45:1613// Enable mojo Blob URL interface and better blob URL lifetime management.
14// Can be enabled independently of NetworkService.
15const base::Feature kMojoBlobURLs{"MojoBlobURLs",
16 base::FEATURE_DISABLED_BY_DEFAULT};
17
Matt Falkenhagen5cc652792018-06-21 10:34:3318// Enable new service worker glue for NetworkService. Can be
19// enabled independently of NetworkService.
20const base::Feature kServiceWorkerServicification{
21 "ServiceWorkerServicification", base::FEATURE_DISABLED_BY_DEFAULT};
22
23} // namespace features
24} // namespace blink