mirror of
https://github.com/kiwibrowser/src.next.git
synced 2025-12-28 07:54:51 +00:00
Signed-off-by: GitHub <noreply@github.com> Co-authored-by: kiwibrowser <kiwibrowser@users.noreply.github.com>
17 lines
477 B
C++
17 lines
477 B
C++
// Copyright 2022 The Chromium Authors. All rights reserved.
|
|
// Use of this source code is governed by a BSD-style license that can be
|
|
// found in the LICENSE file.
|
|
|
|
#include "base/features.h"
|
|
#include "base/feature_list.h"
|
|
|
|
namespace base::features {
|
|
|
|
// Alphabetical:
|
|
|
|
// Optimizes parsing and loading of data: URLs.
|
|
const base::Feature kOptimizeDataUrls{"OptimizeDataUrls",
|
|
FEATURE_DISABLED_BY_DEFAULT};
|
|
|
|
} // namespace base::features
|