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

Unified Diff: third_party/WebKit/Source/core/events/ProgressEvent.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/ProgressEvent.h
diff --git a/third_party/WebKit/Source/core/events/ProgressEvent.h b/third_party/WebKit/Source/core/events/ProgressEvent.h
index 241445c1835089050bbe6c27f6b528c7c5a4370f..608b0095c3ec69bf5f49a6bcb2e4e65c4fcfc610 100644
--- a/third_party/WebKit/Source/core/events/ProgressEvent.h
+++ b/third_party/WebKit/Source/core/events/ProgressEvent.h
@@ -35,17 +35,17 @@ namespace blink {
class CORE_EXPORT ProgressEvent : public Event {
DEFINE_WRAPPERTYPEINFO();
public:
- static PassRefPtrWillBeRawPtr<ProgressEvent> create()
+ static RawPtr<ProgressEvent> create()
{
return adoptRefWillBeNoop(new ProgressEvent);
}
- static PassRefPtrWillBeRawPtr<ProgressEvent> create(const AtomicString& type, bool lengthComputable, unsigned long long loaded, unsigned long long total)
+ static RawPtr<ProgressEvent> create(const AtomicString& type, bool lengthComputable, unsigned long long loaded, unsigned long long total)
{
- return adoptRefWillBeNoop(new ProgressEvent(type, lengthComputable, loaded, total));
+ return new ProgressEvent(type, lengthComputable, loaded, total);
}
- static PassRefPtrWillBeRawPtr<ProgressEvent> create(const AtomicString& type, const ProgressEventInit& initializer)
+ static RawPtr<ProgressEvent> create(const AtomicString& type, const ProgressEventInit& initializer)
{
- return adoptRefWillBeNoop(new ProgressEvent(type, initializer));
+ return new ProgressEvent(type, initializer);
}
bool lengthComputable() const { return m_lengthComputable; }
« no previous file with comments | « third_party/WebKit/Source/core/events/PopStateEvent.cpp ('k') | third_party/WebKit/Source/core/events/PromiseRejectionEvent.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698