| Index: cc/resources/picture.cc
 | 
| diff --git a/cc/resources/picture.cc b/cc/resources/picture.cc
 | 
| index 6bbeeaaefb08f58c975426ea5365b3874787e9b9..cf5e59b0bababbb0eb557f5e5a1967b6329b9040 100644
 | 
| --- a/cc/resources/picture.cc
 | 
| +++ b/cc/resources/picture.cc
 | 
| @@ -461,19 +461,19 @@ Picture::PixelRefIterator& Picture::PixelRefIterator::operator++() {
 | 
|    return *this;
 | 
|  }
 | 
|  
 | 
| -scoped_refptr<base::debug::ConvertableToTraceFormat>
 | 
| +scoped_refptr<base::trace_event::ConvertableToTraceFormat>
 | 
|      Picture::AsTraceableRasterData(float scale) const {
 | 
| -  scoped_refptr<base::debug::TracedValue> raster_data =
 | 
| -      new base::debug::TracedValue();
 | 
| +  scoped_refptr<base::trace_event::TracedValue> raster_data =
 | 
| +      new base::trace_event::TracedValue();
 | 
|    TracedValue::SetIDRef(this, raster_data.get(), "picture_id");
 | 
|    raster_data->SetDouble("scale", scale);
 | 
|    return raster_data;
 | 
|  }
 | 
|  
 | 
| -scoped_refptr<base::debug::ConvertableToTraceFormat>
 | 
| +scoped_refptr<base::trace_event::ConvertableToTraceFormat>
 | 
|      Picture::AsTraceableRecordData() const {
 | 
| -  scoped_refptr<base::debug::TracedValue> record_data =
 | 
| -      new base::debug::TracedValue();
 | 
| +  scoped_refptr<base::trace_event::TracedValue> record_data =
 | 
| +      new base::trace_event::TracedValue();
 | 
|    TracedValue::SetIDRef(this, record_data.get(), "picture_id");
 | 
|    MathUtil::AddToTracedValue("layer_rect", layer_rect_, record_data.get());
 | 
|    return record_data;
 | 
| 
 |