// Copyright 2012 The Chromium Authors // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #ifndef CONTENT_PUBLIC_COMMON_BINDINGS_POLICY_H_ #define CONTENT_PUBLIC_COMMON_BINDINGS_POLICY_H_ #include "base/containers/enum_set.h" namespace content { // This enum specifies values for the types of JavaScript bindings exposed to // renderers. enum class BindingsPolicyValue { … }; BindingsPolicySet; // The set of WebUI bindings. inline constexpr BindingsPolicySet kWebUIBindingsPolicySet = …; } // namespace content #endif // CONTENT_PUBLIC_COMMON_BINDINGS_POLICY_H_