| Index: cc/resources/clip_display_item.cc
 | 
| diff --git a/cc/resources/clip_display_item.cc b/cc/resources/clip_display_item.cc
 | 
| index 5a34dac9ed4c7b74108fd9b8097f1da845672813..b124ba1a1a77c08fd6d3a01175dd601b31dfdea6 100644
 | 
| --- a/cc/resources/clip_display_item.cc
 | 
| +++ b/cc/resources/clip_display_item.cc
 | 
| @@ -53,7 +53,7 @@ size_t ClipDisplayItem::PictureMemoryUsage() const {
 | 
|    return total_size;
 | 
|  }
 | 
|  
 | 
| -void ClipDisplayItem::AsValueInto(base::debug::TracedValue* array) const {
 | 
| +void ClipDisplayItem::AsValueInto(base::trace_event::TracedValue* array) const {
 | 
|    std::string value = base::StringPrintf("ClipDisplayItem rect: [%s]",
 | 
|                                           clip_rect_.ToString().c_str());
 | 
|    for (const SkRRect& rounded_rect : rounded_clip_rects_) {
 | 
| @@ -102,7 +102,8 @@ size_t EndClipDisplayItem::PictureMemoryUsage() const {
 | 
|    return 0;
 | 
|  }
 | 
|  
 | 
| -void EndClipDisplayItem::AsValueInto(base::debug::TracedValue* array) const {
 | 
| +void EndClipDisplayItem::AsValueInto(
 | 
| +    base::trace_event::TracedValue* array) const {
 | 
|    array->AppendString("EndClipDisplayItem");
 | 
|  }
 | 
|  
 | 
| 
 |