| Index: cc/quads/stream_video_draw_quad.cc
|
| diff --git a/cc/quads/stream_video_draw_quad.cc b/cc/quads/stream_video_draw_quad.cc
|
| index 6b5a509d29ea6aca926df3db9fed1fcc9b776ee8..683d4e5185b1db533c4217629f1cd9cb69f047df 100644
|
| --- a/cc/quads/stream_video_draw_quad.cc
|
| +++ b/cc/quads/stream_video_draw_quad.cc
|
| @@ -4,7 +4,6 @@
|
|
|
| #include "cc/quads/stream_video_draw_quad.h"
|
|
|
| -#include "base/debug/trace_event_argument.h"
|
| #include "base/logging.h"
|
| #include "base/values.h"
|
| #include "cc/base/math_util.h"
|
| @@ -50,11 +49,9 @@
|
| return static_cast<const StreamVideoDrawQuad*>(quad);
|
| }
|
|
|
| -void StreamVideoDrawQuad::ExtendValue(base::debug::TracedValue* value) const {
|
| +void StreamVideoDrawQuad::ExtendValue(base::DictionaryValue* value) const {
|
| value->SetInteger("resource_id", resource_id);
|
| - value->BeginArray("matrix");
|
| - MathUtil::AddToTracedValue(matrix, value);
|
| - value->EndArray();
|
| + value->Set("matrix", MathUtil::AsValue(matrix).release());
|
| }
|
|
|
| } // namespace cc
|
|
|