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

Unified Diff: cc/debug/traced_value.cc

Issue 263653002: Move traced_value.* from cc/debug/ to base/debug/ (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Added BASE_EXPORT Created 6 years, 7 months 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/traced_value.h ('k') | cc/layers/heads_up_display_layer_impl.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: cc/debug/traced_value.cc
diff --git a/cc/debug/traced_value.cc b/cc/debug/traced_value.cc
deleted file mode 100644
index 3b506ae7e370aa8153f4ac566cb7dfd1fd1c9ca9..0000000000000000000000000000000000000000
--- a/cc/debug/traced_value.cc
+++ /dev/null
@@ -1,63 +0,0 @@
-// 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);
-}
-
-void TracedValue::MakeDictIntoImplicitSnapshotWithCategory(
- const char* category,
- base::DictionaryValue* dict,
- const char* object_base_type_name,
- const char* object_name,
- const void* id) {
- dict->SetString("cat", category);
- dict->SetString("base_type", object_base_type_name);
- 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
« no previous file with comments | « cc/debug/traced_value.h ('k') | cc/layers/heads_up_display_layer_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698