Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(3193)

Unified Diff: cc/debug/traced_value.h

Issue 1531403002: Revert "Delete CC." (Closed) Base URL: https://github.com/domokit/mojo.git@master
Patch Set: Created 5 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « cc/debug/ring_buffer.h ('k') | cc/debug/traced_value.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: cc/debug/traced_value.h
diff --git a/cc/debug/traced_value.h b/cc/debug/traced_value.h
new file mode 100644
index 0000000000000000000000000000000000000000..34e79a7a06237c0dfe206f949786d7484d460d0d
--- /dev/null
+++ b/cc/debug/traced_value.h
@@ -0,0 +1,41 @@
+// Copyright 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.
+
+#ifndef CC_DEBUG_TRACED_VALUE_H_
+#define CC_DEBUG_TRACED_VALUE_H_
+
+namespace base {
+namespace trace_event {
+class TracedValue;
+}
+}
+
+namespace cc {
+
+class TracedValue {
+ public:
+ static void AppendIDRef(const void* id,
+ base::trace_event::TracedValue* array);
+ static void SetIDRef(const void* id,
+ base::trace_event::TracedValue* dict,
+ const char* name);
+ static void MakeDictIntoImplicitSnapshot(base::trace_event::TracedValue* dict,
+ const char* object_name,
+ const void* id);
+ static void MakeDictIntoImplicitSnapshotWithCategory(
+ const char* category,
+ base::trace_event::TracedValue* dict,
+ const char* object_name,
+ const void* id);
+ static void MakeDictIntoImplicitSnapshotWithCategory(
+ const char* category,
+ base::trace_event::TracedValue* dict,
+ const char* object_base_type_name,
+ const char* object_name,
+ const void* id);
+};
+
+} // namespace cc
+
+#endif // CC_DEBUG_TRACED_VALUE_H_
« no previous file with comments | « cc/debug/ring_buffer.h ('k') | cc/debug/traced_value.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698