chromium/testing/libfuzzer/proto/json_proto_converter.cc

// Copyright 2017 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

#include "testing/libfuzzer/proto/json_proto_converter.h"

namespace json_proto {

void JsonProtoConverter::AppendArray(const ArrayValue& array_value) {}

void JsonProtoConverter::AppendNumber(const NumberValue& number_value) {}

void JsonProtoConverter::AppendObject(const JsonObject& json_object) {}

void JsonProtoConverter::AppendValue(const JsonValue& json_value) {}

std::string JsonProtoConverter::Convert(const JsonValue& json_value) {}

std::string JsonProtoConverter::Convert(const JsonObject& json_object) {}

std::string JsonProtoConverter::Convert(
    const json_proto::ArrayValue& json_array) {}

}  // namespace json_proto