OLD | NEW |
1 // Copyright (c) 2013 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2013 The Chromium Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #include "cc/debug/traced_value.h" | 5 #include "cc/debug/traced_value.h" |
6 | 6 |
7 #include "base/strings/stringprintf.h" | 7 #include "base/strings/stringprintf.h" |
8 #include "base/trace_event/trace_event_argument.h" | 8 #include "base/trace_event/trace_event_argument.h" |
9 | 9 |
10 namespace cc { | 10 namespace cc { |
11 | 11 |
12 void TracedValue::AppendIDRef(const void* id, base::debug::TracedValue* state) { | 12 void TracedValue::AppendIDRef(const void* id, |
| 13 base::trace_event::TracedValue* state) { |
13 state->BeginDictionary(); | 14 state->BeginDictionary(); |
14 state->SetString("id_ref", base::StringPrintf("%p", id)); | 15 state->SetString("id_ref", base::StringPrintf("%p", id)); |
15 state->EndDictionary(); | 16 state->EndDictionary(); |
16 } | 17 } |
17 | 18 |
18 void TracedValue::SetIDRef(const void* id, | 19 void TracedValue::SetIDRef(const void* id, |
19 base::debug::TracedValue* state, | 20 base::trace_event::TracedValue* state, |
20 const char* name) { | 21 const char* name) { |
21 state->BeginDictionary(name); | 22 state->BeginDictionary(name); |
22 state->SetString("id_ref", base::StringPrintf("%p", id)); | 23 state->SetString("id_ref", base::StringPrintf("%p", id)); |
23 state->EndDictionary(); | 24 state->EndDictionary(); |
24 } | 25 } |
25 | 26 |
26 void TracedValue::MakeDictIntoImplicitSnapshot(base::debug::TracedValue* dict, | 27 void TracedValue::MakeDictIntoImplicitSnapshot( |
27 const char* object_name, | 28 base::trace_event::TracedValue* dict, |
28 const void* id) { | 29 const char* object_name, |
| 30 const void* id) { |
29 dict->SetString("id", base::StringPrintf("%s/%p", object_name, id)); | 31 dict->SetString("id", base::StringPrintf("%s/%p", object_name, id)); |
30 } | 32 } |
31 | 33 |
32 void TracedValue::MakeDictIntoImplicitSnapshotWithCategory( | 34 void TracedValue::MakeDictIntoImplicitSnapshotWithCategory( |
33 const char* category, | 35 const char* category, |
34 base::debug::TracedValue* dict, | 36 base::trace_event::TracedValue* dict, |
35 const char* object_name, | 37 const char* object_name, |
36 const void* id) { | 38 const void* id) { |
37 dict->SetString("cat", category); | 39 dict->SetString("cat", category); |
38 MakeDictIntoImplicitSnapshot(dict, object_name, id); | 40 MakeDictIntoImplicitSnapshot(dict, object_name, id); |
39 } | 41 } |
40 | 42 |
41 void TracedValue::MakeDictIntoImplicitSnapshotWithCategory( | 43 void TracedValue::MakeDictIntoImplicitSnapshotWithCategory( |
42 const char* category, | 44 const char* category, |
43 base::debug::TracedValue* dict, | 45 base::trace_event::TracedValue* dict, |
44 const char* object_base_type_name, | 46 const char* object_base_type_name, |
45 const char* object_name, | 47 const char* object_name, |
46 const void* id) { | 48 const void* id) { |
47 dict->SetString("cat", category); | 49 dict->SetString("cat", category); |
48 dict->SetString("base_type", object_base_type_name); | 50 dict->SetString("base_type", object_base_type_name); |
49 MakeDictIntoImplicitSnapshot(dict, object_name, id); | 51 MakeDictIntoImplicitSnapshot(dict, object_name, id); |
50 } | 52 } |
51 | 53 |
52 } // namespace cc | 54 } // namespace cc |
OLD | NEW |