| Index: third_party/WebKit/Source/core/svg/graphics/SVGImage.h
 | 
| diff --git a/third_party/WebKit/Source/core/svg/graphics/SVGImage.h b/third_party/WebKit/Source/core/svg/graphics/SVGImage.h
 | 
| index bc718d0911ea1faf03f8cc94662052ac348d4339..ea98cf224aa79547f8541b11b5603b09fae1b47f 100644
 | 
| --- a/third_party/WebKit/Source/core/svg/graphics/SVGImage.h
 | 
| +++ b/third_party/WebKit/Source/core/svg/graphics/SVGImage.h
 | 
| @@ -28,7 +28,6 @@
 | 
|  #define SVGImage_h
 | 
|  
 | 
|  #include "platform/graphics/Image.h"
 | 
| -#include "platform/graphics/paint/DisplayItemClient.h"
 | 
|  #include "platform/heap/Handle.h"
 | 
|  #include "platform/weborigin/KURL.h"
 | 
|  #include "wtf/Allocator.h"
 | 
| @@ -42,7 +41,7 @@ class LayoutReplaced;
 | 
|  class SVGImageChromeClient;
 | 
|  class SVGImageForContainer;
 | 
|  
 | 
| -class SVGImage final : public Image, public DisplayItemClient {
 | 
| +class SVGImage final : public Image {
 | 
|  public:
 | 
|      static PassRefPtr<SVGImage> create(ImageObserver* observer)
 | 
|      {
 | 
| @@ -82,10 +81,6 @@ public:
 | 
|      // thus also independent of current zoom level.
 | 
|      FloatSize concreteObjectSize(const FloatSize& defaultObjectSize) const;
 | 
|  
 | 
| -    // DisplayItemClient methods.
 | 
| -    String debugName() const final { return "SVGImage"; }
 | 
| -    LayoutRect visualRect() const override;
 | 
| -
 | 
|      bool hasIntrinsicDimensions() const;
 | 
|  
 | 
|  private:
 | 
| 
 |