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

Unified Diff: cc/quads/render_pass.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/quads/draw_quad.cc ('k') | cc/quads/render_pass_draw_quad.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: cc/quads/render_pass.cc
diff --git a/cc/quads/render_pass.cc b/cc/quads/render_pass.cc
index 535cb63f451b03a8c0d2457cbc89ee5f4384097e..69c4a21941630df6e28a9fa7b1307aa63728256a 100644
--- a/cc/quads/render_pass.cc
+++ b/cc/quads/render_pass.cc
@@ -4,9 +4,9 @@
#include "cc/quads/render_pass.h"
+#include "base/debug/traced_value.h"
#include "base/values.h"
#include "cc/base/math_util.h"
-#include "cc/debug/traced_value.h"
#include "cc/output/copy_output_request.h"
#include "cc/quads/draw_quad.h"
#include "cc/quads/render_pass_draw_quad.h"
@@ -163,9 +163,11 @@ scoped_ptr<base::Value> RenderPass::AsValue() const {
}
value->Set("quad_list", quad_list_value.release());
- TracedValue::MakeDictIntoImplicitSnapshotWithCategory(
+ base::debug::TracedValue::MakeDictIntoImplicitSnapshotWithCategory(
TRACE_DISABLED_BY_DEFAULT("cc.debug.quads"),
- value.get(), "cc::RenderPass", id.AsTracingId());
+ value.get(),
+ "cc::RenderPass",
+ id.AsTracingId());
return value.PassAs<base::Value>();
}
« no previous file with comments | « cc/quads/draw_quad.cc ('k') | cc/quads/render_pass_draw_quad.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698