#ifndef THIRD_PARTY_BLINK_RENDERER_PLATFORM_GEOMETRY_GEOMETRY_AS_JSON_H_
#define THIRD_PARTY_BLINK_RENDERER_PLATFORM_GEOMETRY_GEOMETRY_AS_JSON_H_
#include <memory>
#include "third_party/blink/renderer/platform/json/json_values.h"
#include "third_party/blink/renderer/platform/platform_export.h"
#include "ui/gfx/geometry/rect_f.h"
namespace blink {
template <typename T>
static std::unique_ptr<JSONArray> RectAsJSONArray(const T& rect) { … }
template <typename T>
std::unique_ptr<JSONArray> PointAsJSONArray(const T& point) { … }
template <typename T>
std::unique_ptr<JSONArray> VectorAsJSONArray(const T& vector) { … }
inline std::unique_ptr<JSONArray> Point3AsJSONArray(const gfx::Point3F& point) { … }
template <typename T>
std::unique_ptr<JSONArray> SizeAsJSONArray(const T& size) { … }
}
#endif