Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1244)

Unified Diff: Source/core/style/StyleFetchedImage.h

Issue 1129533002: Oilpan: fix build after r194911. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: adjust position of Document clearing Created 5 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | Source/core/style/StyleFetchedImage.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/style/StyleFetchedImage.h
diff --git a/Source/core/style/StyleFetchedImage.h b/Source/core/style/StyleFetchedImage.h
index e9f1f8c2435ec701403c19998c7961ba9a19791b..be1d5a006930c687334d426d18a07f2ac97dbc83 100644
--- a/Source/core/style/StyleFetchedImage.h
+++ b/Source/core/style/StyleFetchedImage.h
@@ -60,10 +60,10 @@ public:
virtual ImageResource* cachedImage() const override { return m_image.get(); }
private:
- explicit StyleFetchedImage(ImageResource*, Document*);
+ StyleFetchedImage(ImageResource*, Document*);
ResourcePtr<ImageResource> m_image;
- RawPtrWillBeMember<Document> m_document;
+ RawPtrWillBePersistent<Document> m_document;
};
DEFINE_STYLE_IMAGE_TYPE_CASTS(StyleFetchedImage, isImageResource());
« no previous file with comments | « no previous file | Source/core/style/StyleFetchedImage.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698