chromium/third_party/blink/renderer/bindings/core/v8/script_source_location_type.h

// Copyright 2017 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_BINDINGS_CORE_V8_SCRIPT_SOURCE_LOCATION_TYPE_H_
#define THIRD_PARTY_BLINK_RENDERER_BINDINGS_CORE_V8_SCRIPT_SOURCE_LOCATION_TYPE_H_

namespace blink {

// An enumeration for reporting the source of javascript source code. Only used
// for logging/stats purposes, and shouldn't be used for behavioural differences
// to avoid layer violations.
// TODO(leszeks): This is actually being used for affecting the behaviour of
// inline script caching currently, we should either update this documentation
// or remove that usage.
enum class ScriptSourceLocationType {};

}  // namespace blink

#endif  // THIRD_PARTY_BLINK_RENDERER_BINDINGS_CORE_V8_SCRIPT_SOURCE_LOCATION_TYPE_H_