// Copyright (c) 2013 The Chromium Authors. All rights reserved. // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #include "cc/debug/traced_value.h" #include "base/json/json_writer.h" #include "base/stringprintf.h" #include "base/values.h" namespace cc { scoped_ptr TracedValue::CreateIDRef(const void* id) { scoped_ptr res(new base::DictionaryValue()); res->SetString("id_ref", base::StringPrintf("%p", id)); return res.PassAs(); } void TracedValue::MakeDictIntoImplicitSnapshot( base::DictionaryValue* dict, const char* object_name, const void* id) { dict->SetString("id", base::StringPrintf("%s/%p", object_name, id)); } scoped_ptr TracedValue::FromValue( base::Value* value) { TracedValue* ptr = new TracedValue(value); scoped_ptr result(ptr); return result.PassAs(); } TracedValue::TracedValue(base::Value* value) : value_(value) { } TracedValue::~TracedValue() { } void TracedValue::AppendAsTraceFormat(std::string* out) const { std::string tmp; base::JSONWriter::Write(value_.get(), &tmp); *out += tmp; } } // namespace cc