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

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, 9 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..5528b722ba7171156834cda90d5200776c7b7fab 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);
}
// '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;
« no previous file with comments | « third_party/WebKit/Source/core/svg/SVGViewSpec.idl ('k') | third_party/WebKit/Source/core/svg/SVGZoomEvent.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698