// Copyright 2019 The Chromium Authors // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #include "util/json/json_serialization.h" #include <memory> #include <sstream> #include <string> #include <utility> #include "json/reader.h" #include "json/writer.h" #include "platform/base/error.h" #include "util/osp_logging.h" namespace openscreen::json { ErrorOr<Json::Value> Parse(std::string_view document) { … } ErrorOr<std::string> Stringify(const Json::Value& value) { … } } // namespace openscreen::json