summaryrefslogtreecommitdiffstats
path: root/cc/debug/traced_value.cc
blob: 5a324148725423075de93d43e147e5ca828af54a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
// 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/strings/stringprintf.h"
#include "base/values.h"

namespace cc {

scoped_ptr<base::Value> TracedValue::CreateIDRef(const void* id) {
  scoped_ptr<base::DictionaryValue> res(new base::DictionaryValue());
  res->SetString("id_ref", base::StringPrintf("%p", id));
  return res.PassAs<base::Value>();
}

void TracedValue::MakeDictIntoImplicitSnapshot(
    base::DictionaryValue* dict, const char* object_name, const void* id) {
  dict->SetString("id", base::StringPrintf("%s/%p", object_name, id));
}

void TracedValue::MakeDictIntoImplicitSnapshotWithCategory(
    const char* category,
    base::DictionaryValue* dict,
    const char* object_name,
    const void* id) {
  dict->SetString("cat", category);
  MakeDictIntoImplicitSnapshot(dict, object_name, id);
}

scoped_refptr<base::debug::ConvertableToTraceFormat> TracedValue::FromValue(
    base::Value* value) {
  return scoped_refptr<base::debug::ConvertableToTraceFormat>(
      new TracedValue(value));
}

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