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

Unified Diff: Source/core/svg/SVGZoomEvent.h

Issue 678163002: Oilpan: move SVG property hierarchy to the heap. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Rebased upto r185213 Created 6 years, 1 month 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/SVGViewSpec.cpp ('k') | Source/core/svg/SVGZoomEvent.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/svg/SVGZoomEvent.h
diff --git a/Source/core/svg/SVGZoomEvent.h b/Source/core/svg/SVGZoomEvent.h
index f5e588bd24d739546a265194f800426ad3b6f1e0..38d557dbe772843ee5fa133ce25659c02b5fc9e2 100644
--- a/Source/core/svg/SVGZoomEvent.h
+++ b/Source/core/svg/SVGZoomEvent.h
@@ -25,6 +25,7 @@
#include "core/events/UIEvent.h"
#include "core/svg/SVGPoint.h"
#include "core/svg/SVGRect.h"
+#include "platform/heap/Handle.h"
namespace blink {
@@ -37,15 +38,15 @@ public:
}
// 'SVGZoomEvent' functions
- PassRefPtr<SVGRectTearOff> zoomRectScreen() const;
+ PassRefPtrWillBeRawPtr<SVGRectTearOff> zoomRectScreen() const;
float previousScale() const;
- PassRefPtr<SVGPointTearOff> previousTranslate() const;
+ PassRefPtrWillBeRawPtr<SVGPointTearOff> previousTranslate() const;
float newScale() const;
- PassRefPtr<SVGPointTearOff> newTranslate() const;
+ PassRefPtrWillBeRawPtr<SVGPointTearOff> newTranslate() const;
virtual const AtomicString& interfaceName() const override;
« no previous file with comments | « Source/core/svg/SVGViewSpec.cpp ('k') | Source/core/svg/SVGZoomEvent.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698