Chromium Code Reviews| 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 60db493ccb311e2b35eddb3c5b85f83a8c504afb..0a4ef64c5637a06849c308a9dc9e247499da7822 100644 |
| --- a/third_party/WebKit/Source/core/style/StyleFetchedImage.cpp |
| +++ b/third_party/WebKit/Source/core/style/StyleFetchedImage.cpp |
| @@ -31,9 +31,9 @@ |
| namespace blink { |
| -StyleFetchedImage::StyleFetchedImage(ImageResource* image, Document* document, const KURL& url) |
| +StyleFetchedImage::StyleFetchedImage(ImageResource* image, Document& document, const KURL& url) |
| : m_image(image) |
| - , m_document(document) |
| + , m_document(&document) |
|
sashab
2016/09/22 00:24:32
Can this be Document&? :)
|
| , m_url(url) |
| { |
| m_isImageResource = true; |