| Index: Source/platform/TracedValue.cpp
|
| diff --git a/Source/platform/TracedValue.cpp b/Source/platform/TracedValue.cpp
|
| index d6bbd2e2ead1b2d8f16ab17a53963e990b90564f..129bf39f51e84748522ca68691def9a84a6916d9 100644
|
| --- a/Source/platform/TracedValue.cpp
|
| +++ b/Source/platform/TracedValue.cpp
|
| @@ -57,6 +57,11 @@ void TracedValue::setString(const char* name, const String& value)
|
| currentDictionary()->setString(name, threadSafeCopy(value));
|
| }
|
|
|
| +void TracedValue::setArray(const char* name, PassRefPtr<JSONArray> value)
|
| +{
|
| + currentDictionary()->setArray(name, value);
|
| +}
|
| +
|
| void TracedValue::beginDictionary(const char* name)
|
| {
|
| RefPtr<JSONObject> dictionary = JSONObject::create();
|
|
|