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

Unified Diff: cc/quads/shared_quad_state.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/render_pass_draw_quad.cc ('k') | cc/resources/image_copy_raster_worker_pool.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: cc/quads/shared_quad_state.cc
diff --git a/cc/quads/shared_quad_state.cc b/cc/quads/shared_quad_state.cc
index 3832886487d70d3f1a7eb6b737013427a107babc..19cf2d99242b92ba2dff08fbc1552ea3cb973b99 100644
--- a/cc/quads/shared_quad_state.cc
+++ b/cc/quads/shared_quad_state.cc
@@ -4,9 +4,9 @@
#include "cc/quads/shared_quad_state.h"
+#include "base/debug/traced_value.h"
#include "base/values.h"
#include "cc/base/math_util.h"
-#include "cc/debug/traced_value.h"
namespace cc {
@@ -59,9 +59,11 @@ scoped_ptr<base::Value> SharedQuadState::AsValue() const {
value->Set("clip_rect", MathUtil::AsValue(clip_rect).release());
value->SetDouble("opacity", opacity);
value->SetString("blend_mode", SkXfermode::ModeName(blend_mode));
- TracedValue::MakeDictIntoImplicitSnapshotWithCategory(
+ base::debug::TracedValue::MakeDictIntoImplicitSnapshotWithCategory(
TRACE_DISABLED_BY_DEFAULT("cc.debug.quads"),
- value.get(), "cc::SharedQuadState", this);
+ value.get(),
+ "cc::SharedQuadState",
+ this);
return value.PassAs<base::Value>();
}
« no previous file with comments | « cc/quads/render_pass_draw_quad.cc ('k') | cc/resources/image_copy_raster_worker_pool.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698