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

Unified Diff: third_party/WebKit/Source/core/events/AnimationEvent.h

Issue 1852663002: Oilpan: Remove WillBe types (part 9) (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/events/AnimationEvent.h
diff --git a/third_party/WebKit/Source/core/events/AnimationEvent.h b/third_party/WebKit/Source/core/events/AnimationEvent.h
index f7a623012f11147f5b81c8c942380899d71790ba..4490219ae94ec40677141413e92ef150ded095a1 100644
--- a/third_party/WebKit/Source/core/events/AnimationEvent.h
+++ b/third_party/WebKit/Source/core/events/AnimationEvent.h
@@ -34,17 +34,17 @@ namespace blink {
class AnimationEvent final : public Event {
DEFINE_WRAPPERTYPEINFO();
public:
- static PassRefPtrWillBeRawPtr<AnimationEvent> create()
+ static RawPtr<AnimationEvent> create()
{
return adoptRefWillBeNoop(new AnimationEvent);
}
- static PassRefPtrWillBeRawPtr<AnimationEvent> create(const AtomicString& type, const String& animationName, double elapsedTime)
+ static RawPtr<AnimationEvent> create(const AtomicString& type, const String& animationName, double elapsedTime)
{
- return adoptRefWillBeNoop(new AnimationEvent(type, animationName, elapsedTime));
+ return new AnimationEvent(type, animationName, elapsedTime);
}
- static PassRefPtrWillBeRawPtr<AnimationEvent> create(const AtomicString& type, const AnimationEventInit& initializer)
+ static RawPtr<AnimationEvent> create(const AtomicString& type, const AnimationEventInit& initializer)
{
- return adoptRefWillBeNoop(new AnimationEvent(type, initializer));
+ return new AnimationEvent(type, initializer);
}
~AnimationEvent() override;
« no previous file with comments | « third_party/WebKit/Source/core/clipboard/DataTransfer.h ('k') | third_party/WebKit/Source/core/events/AnimationPlayerEvent.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698