| 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 f2e15b31e4c114262515a4a8c346468200ea4352..08c6706be29571665a37a47f68329f199ab4cf68 100644
|
| --- a/third_party/WebKit/Source/core/style/StyleFetchedImage.cpp
|
| +++ b/third_party/WebKit/Source/core/style/StyleFetchedImage.cpp
|
| @@ -113,12 +113,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)
|
|
|