| Index: third_party/WebKit/Source/core/style/StyleFetchedImage.cpp | 
| diff --git a/third_party/WebKit/Source/core/style/StyleFetchedImage.cpp b/third_party/WebKit/Source/core/style/StyleFetchedImage.cpp | 
| index 5b3f777c8e9cc1d82481bde39d1bfa518ece2254..3d3bf2dbf7c02b7df28ea2bf723b3e2c04c8f335 100644 | 
| --- a/third_party/WebKit/Source/core/style/StyleFetchedImage.cpp | 
| +++ b/third_party/WebKit/Source/core/style/StyleFetchedImage.cpp | 
| @@ -116,12 +116,12 @@ bool StyleFetchedImage::usesImageContainerSize() const | 
|  | 
| void StyleFetchedImage::addClient(LayoutObject* layoutObject) | 
| { | 
| -    m_image->addClient(layoutObject); | 
| +    m_image->addObserver(layoutObject); | 
| } | 
|  | 
| void StyleFetchedImage::removeClient(LayoutObject* layoutObject) | 
| { | 
| -    m_image->removeClient(layoutObject); | 
| +    m_image->removeObserver(layoutObject); | 
| } | 
|  | 
| void StyleFetchedImage::notifyFinished(Resource* resource) | 
|  |