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

Unified Diff: Source/core/svg/graphics/SVGImageChromeClient.h

Issue 1291903003: Oilpan: Move ChromeClient classes into Oilpan heap. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Fix a raw reference in InspectorOverlayImpl.cpp. Created 5 years, 4 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 | « Source/core/svg/graphics/SVGImage.cpp ('k') | Source/core/svg/graphics/SVGImageChromeClient.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/svg/graphics/SVGImageChromeClient.h
diff --git a/Source/core/svg/graphics/SVGImageChromeClient.h b/Source/core/svg/graphics/SVGImageChromeClient.h
index 0592bae67ca8a0e39cca08cdabb7a8fe51dbfa54..6259d21f373088b1a533570bcb0808cb4e309fbb 100644
--- a/Source/core/svg/graphics/SVGImageChromeClient.h
+++ b/Source/core/svg/graphics/SVGImageChromeClient.h
@@ -37,14 +37,16 @@ namespace blink {
class SVGImage;
class SVGImageChromeClient final : public EmptyChromeClient {
- WTF_MAKE_NONCOPYABLE(SVGImageChromeClient); WTF_MAKE_FAST_ALLOCATED(SVGImageChromeClient);
public:
- explicit SVGImageChromeClient(SVGImage*);
+ static PassOwnPtrWillBeRawPtr<SVGImageChromeClient> create(SVGImage*);
+
bool isSVGImageChromeClient() const override;
SVGImage* image() const { return m_image; }
private:
+ explicit SVGImageChromeClient(SVGImage*);
+
void chromeDestroyed() override;
void invalidateRect(const IntRect&) override;
void scheduleAnimation() override;
« no previous file with comments | « Source/core/svg/graphics/SVGImage.cpp ('k') | Source/core/svg/graphics/SVGImageChromeClient.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698