blob: 2ca5a2017c8f3aa51bd64cb9800af69eb4168d20 [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.
#include "third_party/blink/renderer/core/trustedtypes/trusted_html.h"
namespace blink {
TrustedHTML::TrustedHTML(String html) : html_(std::move(html)) {}
const String& TrustedHTML::toString() const {
return html_;
}
} // namespace blink