// Copyright 2012 The Chromium Authors // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #ifndef BASE_JSON_JSON_STRING_VALUE_SERIALIZER_H_ #define BASE_JSON_JSON_STRING_VALUE_SERIALIZER_H_ #include <memory> #include <string> #include <string_view> #include "base/base_export.h" #include "base/json/json_reader.h" #include "base/memory/raw_ptr.h" #include "base/values.h" class BASE_EXPORT JSONStringValueSerializer : public base::ValueSerializer { … }; class BASE_EXPORT JSONStringValueDeserializer : public base::ValueDeserializer { … }; #endif // BASE_JSON_JSON_STRING_VALUE_SERIALIZER_H_