blob: bbfb555cb4fed68544b3cff5ddbae1900b408ce8 [file] [log] [blame]
// Copyright 2017 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.
#ifndef WebFeatureForward_h
#define WebFeatureForward_h
#include <cstdint>
namespace blink {
// This header just forward-declares WebFeature for the blink namespace.
// Including the actual file that defines the WebFeature enum is heavy on the
// compiler, so it should be avoided when possible. Those who *do* need the
// definition, though, need to include WebFeature.h instead.
namespace mojom {
enum class WebFeature : int32_t;
} // namespace mojom
using WebFeature = mojom::WebFeature;
} // namespace blink
#endif // WebFeatureForward_h