| Index: third_party/WebKit/Source/platform/graphics/paint/EffectPaintPropertyNode.cpp
 | 
| diff --git a/third_party/WebKit/Source/platform/graphics/paint/EffectPaintPropertyNode.cpp b/third_party/WebKit/Source/platform/graphics/paint/EffectPaintPropertyNode.cpp
 | 
| index 8ee5702ec6883ceaef2beca929d8d82f37607da1..85bfcede76ce1863ddf46ab1a0c1659dcc868d9b 100644
 | 
| --- a/third_party/WebKit/Source/platform/graphics/paint/EffectPaintPropertyNode.cpp
 | 
| +++ b/third_party/WebKit/Source/platform/graphics/paint/EffectPaintPropertyNode.cpp
 | 
| @@ -36,12 +36,12 @@ cc::Layer* EffectPaintPropertyNode::EnsureDummyLayer() const {
 | 
|  String EffectPaintPropertyNode::ToString() const {
 | 
|    return String::Format(
 | 
|        "parent=%p localTransformSpace=%p outputClip=%p opacity=%f filter=%s "
 | 
| -      "blendMode=%s directCompositingReasons=%s compositorElementId=(%d, %d) "
 | 
| +      "blendMode=%s directCompositingReasons=%s compositorElementId=%lu "
 | 
|        "paintOffset=%s",
 | 
|        parent_.Get(), local_transform_space_.Get(), output_clip_.Get(), opacity_,
 | 
|        filter_.ToString().Ascii().data(), SkBlendMode_Name(blend_mode_),
 | 
|        CompositingReasonsAsString(direct_compositing_reasons_).Ascii().data(),
 | 
| -      compositor_element_id_.primaryId, compositor_element_id_.secondaryId,
 | 
| +      static_cast<unsigned long>(compositor_element_id_.id_),
 | 
|        paint_offset_.ToString().Ascii().data());
 | 
|  }
 | 
|  
 | 
| 
 |