blob: 333aa0bcb5dcf4c369891c28b529392cac9e8f44 [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(const String& html) : html_(html) {}
String TrustedHTML::toString() const {
return html_;
}
} // namespace blink