// 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. #ifndef BASE_JSON_JSON_COMMON_H_ #define BASE_JSON_JSON_COMMON_H_ #include <stddef.h> #include "base/check_op.h" #include "base/memory/raw_ptr.h" namespace base { namespace internal { // Chosen to support 99.9% of documents found in the wild late 2016. // http://crbug.com/673263 const size_t kAbsoluteMaxDepth = …; // Simple class that checks for maximum recursion/stack overflow. class StackMarker { … }; } // namespace internal } // namespace base #endif // BASE_JSON_JSON_COMMON_H_