| 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 135b2b4414de6d4b5f96a962a432ec5c0b072734..853b8993b6829cd22e3de5dcc1d26a7a44b70818 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)
|
|
|