// 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. #include "third_party/blink/renderer/core/trustedtypes/trusted_script.h" #include "third_party/blink/renderer/core/trustedtypes/trusted_types_util.h" #include "third_party/blink/renderer/platform/bindings/exception_state.h" namespace blink { TrustedScript::TrustedScript(String script) : … { … } const String& TrustedScript::toString() const { … } TrustedScript* TrustedScript::fromLiteral(ScriptState* script_state, const ScriptValue& templateLiteral, ExceptionState& exception_state) { … } } // namespace blink