| OLD | NEW |
| 1 // Copyright 2013 The Chromium Authors. All rights reserved. | 1 // Copyright 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 #ifndef CC_DEBUG_TRACED_VALUE_H_ | 5 #ifndef CC_DEBUG_TRACED_VALUE_H_ |
| 6 #define CC_DEBUG_TRACED_VALUE_H_ | 6 #define CC_DEBUG_TRACED_VALUE_H_ |
| 7 | 7 |
| 8 namespace base { | 8 namespace base { |
| 9 namespace trace_event { | 9 namespace debug { |
| 10 class TracedValue; | 10 class TracedValue; |
| 11 } | 11 } |
| 12 | |
| 13 // TODO(ssid): remove these aliases after the tracing clients are moved to the | |
| 14 // new trace_event namespace. See crbug.com/451032. ETA: March 2015. | |
| 15 namespace debug { | |
| 16 using ::base::trace_event::TracedValue; | |
| 17 } | 12 } |
| 18 } // namespace base | |
| 19 | 13 |
| 20 namespace cc { | 14 namespace cc { |
| 21 | 15 |
| 22 class TracedValue { | 16 class TracedValue { |
| 23 public: | 17 public: |
| 24 static void AppendIDRef(const void* id, base::debug::TracedValue* array); | 18 static void AppendIDRef(const void* id, base::debug::TracedValue* array); |
| 25 static void SetIDRef(const void* id, | 19 static void SetIDRef(const void* id, |
| 26 base::debug::TracedValue* dict, | 20 base::debug::TracedValue* dict, |
| 27 const char* name); | 21 const char* name); |
| 28 static void MakeDictIntoImplicitSnapshot(base::debug::TracedValue* dict, | 22 static void MakeDictIntoImplicitSnapshot(base::debug::TracedValue* dict, |
| 29 const char* object_name, | 23 const char* object_name, |
| 30 const void* id); | 24 const void* id); |
| 31 static void MakeDictIntoImplicitSnapshotWithCategory( | 25 static void MakeDictIntoImplicitSnapshotWithCategory( |
| 32 const char* category, | 26 const char* category, |
| 33 base::debug::TracedValue* dict, | 27 base::debug::TracedValue* dict, |
| 34 const char* object_name, | 28 const char* object_name, |
| 35 const void* id); | 29 const void* id); |
| 36 static void MakeDictIntoImplicitSnapshotWithCategory( | 30 static void MakeDictIntoImplicitSnapshotWithCategory( |
| 37 const char* category, | 31 const char* category, |
| 38 base::debug::TracedValue* dict, | 32 base::debug::TracedValue* dict, |
| 39 const char* object_base_type_name, | 33 const char* object_base_type_name, |
| 40 const char* object_name, | 34 const char* object_name, |
| 41 const void* id); | 35 const void* id); |
| 42 }; | 36 }; |
| 43 | 37 |
| 44 } // namespace cc | 38 } // namespace cc |
| 45 | 39 |
| 46 #endif // CC_DEBUG_TRACED_VALUE_H_ | 40 #endif // CC_DEBUG_TRACED_VALUE_H_ |
| OLD | NEW |