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

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

Issue 1686483002: Oilpan: Remove most WillBe types from the code base (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 10 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: third_party/WebKit/Source/core/svg/SVGZoomEvent.h
diff --git a/third_party/WebKit/Source/core/svg/SVGZoomEvent.h b/third_party/WebKit/Source/core/svg/SVGZoomEvent.h
index 134da5ec8ddfa3508ed13d2e2196c7a6ae552597..1b29baf0c36e3b8d64d4f434b5eb9397f576a9e0 100644
--- a/third_party/WebKit/Source/core/svg/SVGZoomEvent.h
+++ b/third_party/WebKit/Source/core/svg/SVGZoomEvent.h
@@ -32,21 +32,21 @@ namespace blink {
class SVGZoomEvent final : public UIEvent {
DEFINE_WRAPPERTYPEINFO();
public:
- static PassRefPtrWillBeRawPtr<SVGZoomEvent> create()
+ static RawPtr<SVGZoomEvent> create()
{
- return adoptRefWillBeNoop(new SVGZoomEvent);
+ return (new SVGZoomEvent);
}
// 'SVGZoomEvent' functions
- PassRefPtrWillBeRawPtr<SVGRectTearOff> zoomRectScreen() const;
+ RawPtr<SVGRectTearOff> zoomRectScreen() const;
float previousScale() const;
- PassRefPtrWillBeRawPtr<SVGPointTearOff> previousTranslate() const;
+ RawPtr<SVGPointTearOff> previousTranslate() const;
float newScale() const;
- PassRefPtrWillBeRawPtr<SVGPointTearOff> newTranslate() const;
+ RawPtr<SVGPointTearOff> newTranslate() const;
const AtomicString& interfaceName() const override;

Powered by Google App Engine
This is Rietveld 408576698