// Copyright 2018 The Chromium Authors // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #ifndef THIRD_PARTY_BLINK_RENDERER_CORE_SCRIPT_SCRIPT_SCHEDULING_TYPE_H_ #define THIRD_PARTY_BLINK_RENDERER_CORE_SCRIPT_SCRIPT_SCHEDULING_TYPE_H_ namespace blink { // Type of <script>'s scheduling. // // This is determined by Steps 31-32 of // https://html.spec.whatwg.org/C/#prepare-the-script-element. // // The enum values are used in histograms and thus do not change existing // enum values when modifying. enum class ScriptSchedulingType { … }; } // namespace blink #endif // THIRD_PARTY_BLINK_RENDERER_CORE_SCRIPT_SCRIPT_SCHEDULING_TYPE_H_