| Index: cc/resources/display_item_list.cc
|
| diff --git a/cc/resources/display_item_list.cc b/cc/resources/display_item_list.cc
|
| index b27dea0d6b76f785b0898a01c95f51edcc408167..7a6929a1a5b7d1769612f85c4c50711ece337957 100644
|
| --- a/cc/resources/display_item_list.cc
|
| +++ b/cc/resources/display_item_list.cc
|
| @@ -71,6 +71,11 @@ scoped_refptr<base::debug::ConvertableToTraceFormat> DisplayItemList::AsValue()
|
| new base::debug::TracedValue();
|
|
|
| state->SetInteger("length", items_.size());
|
| + state->BeginArray("params.items");
|
| + for (const DisplayItem* item : items_) {
|
| + item->AsValueInto(state.get());
|
| + }
|
| + state->EndArray();
|
| state->SetValue("params.layer_rect",
|
| MathUtil::AsValue(layer_rect_).release());
|
|
|
|
|