| Index: base/json/json_parser.cc
|
| diff --git a/base/json/json_parser.cc b/base/json/json_parser.cc
|
| index 1850a1a3f66e2dc4814235c75d3b8190bef794f9..4adaab70f7cf4433568a79f5618705a74e6337cd 100644
|
| --- a/base/json/json_parser.cc
|
| +++ b/base/json/json_parser.cc
|
| @@ -24,7 +24,9 @@ namespace internal {
|
|
|
| namespace {
|
|
|
| -const int kStackMaxDepth = 100;
|
| +// Chosen to support 99.9% of documents found in the wild late 2016.
|
| +// http://crbug.com/673263
|
| +const int kStackMaxDepth = 200;
|
|
|
| const int32_t kExtendedASCIIStart = 0x80;
|
|
|
|
|