| Index: third_party/WebKit/Source/core/style/StyleFetchedImage.h
|
| diff --git a/third_party/WebKit/Source/core/style/StyleFetchedImage.h b/third_party/WebKit/Source/core/style/StyleFetchedImage.h
|
| index 994f19e2f13f48ccdf565229e58fbae83ed0dbcf..884f92390ae8a21059482fbb8566a81d9c31a927 100644
|
| --- a/third_party/WebKit/Source/core/style/StyleFetchedImage.h
|
| +++ b/third_party/WebKit/Source/core/style/StyleFetchedImage.h
|
| @@ -37,7 +37,7 @@ class StyleFetchedImage final : public StyleImage, private ResourceClient {
|
| USING_PRE_FINALIZER(StyleFetchedImage, dispose);
|
| USING_GARBAGE_COLLECTED_MIXIN(StyleFetchedImage);
|
| public:
|
| - static StyleFetchedImage* create(ImageResource* image, Document* document, const KURL& url)
|
| + static StyleFetchedImage* create(ImageResource* image, Document& document, const KURL& url)
|
| {
|
| return new StyleFetchedImage(image, document, url);
|
| }
|
| @@ -65,7 +65,7 @@ public:
|
| DECLARE_VIRTUAL_TRACE();
|
|
|
| private:
|
| - StyleFetchedImage(ImageResource*, Document*, const KURL&);
|
| + StyleFetchedImage(ImageResource*, Document&, const KURL&);
|
|
|
| void dispose();
|
|
|
|
|