blob: ab9f9321eaaf61a1038c09cd64a37685be1282a4 [file] [log] [blame]
// Copyright 2022 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "components/user_notes/model/user_note_body.h"
namespace user_notes {
UserNoteBody::UserNoteBody(const std::u16string& plain_text_value)
: plain_text_value_(plain_text_value) {}
UserNoteBody::~UserNoteBody() = default;
} // namespace user_notes