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

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

Issue 1291903003: Oilpan: Move ChromeClient classes into Oilpan heap. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: 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
Index: Source/core/svg/graphics/SVGImageChromeClient.cpp
diff --git a/Source/core/svg/graphics/SVGImageChromeClient.cpp b/Source/core/svg/graphics/SVGImageChromeClient.cpp
index abb3260ab5d63f02006bda95a656607b57d9bbd0..b01faf2a0f2d126766765881fed831975ab7ac9f 100644
--- a/Source/core/svg/graphics/SVGImageChromeClient.cpp
+++ b/Source/core/svg/graphics/SVGImageChromeClient.cpp
@@ -45,6 +45,11 @@ SVGImageChromeClient::SVGImageChromeClient(SVGImage* image)
{
}
+PassOwnPtrWillBeRawPtr<SVGImageChromeClient> SVGImageChromeClient::create(SVGImage* image)
+{
+ return adoptPtrWillBeNoop(new SVGImageChromeClient(image));
+}
+
bool SVGImageChromeClient::isSVGImageChromeClient() const
{
return true;

Powered by Google App Engine
This is Rietveld 408576698