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

Unified Diff: third_party/WebKit/Source/core/events/ResourceProgressEvent.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/ResourceProgressEvent.h
diff --git a/third_party/WebKit/Source/core/events/ResourceProgressEvent.h b/third_party/WebKit/Source/core/events/ResourceProgressEvent.h
index b2db10ce9ad5977ca28bcfb11697583eb8220fd8..419001636740be769764cd9a546bda309e3930fb 100644
--- a/third_party/WebKit/Source/core/events/ResourceProgressEvent.h
+++ b/third_party/WebKit/Source/core/events/ResourceProgressEvent.h
@@ -46,13 +46,13 @@ namespace blink {
class CORE_EXPORT ResourceProgressEvent final : public ProgressEvent {
DEFINE_WRAPPERTYPEINFO();
public:
- static PassRefPtrWillBeRawPtr<ResourceProgressEvent> create()
+ static RawPtr<ResourceProgressEvent> create()
{
return adoptRefWillBeNoop(new ResourceProgressEvent);
}
- static PassRefPtrWillBeRawPtr<ResourceProgressEvent> create(const AtomicString& type, bool lengthComputable, unsigned long long loaded, unsigned long long total, const String& url)
+ static RawPtr<ResourceProgressEvent> create(const AtomicString& type, bool lengthComputable, unsigned long long loaded, unsigned long long total, const String& url)
{
- return adoptRefWillBeNoop(new ResourceProgressEvent(type, lengthComputable, loaded, total, url));
+ return new ResourceProgressEvent(type, lengthComputable, loaded, total, url);
}
const String& url() const;
« no previous file with comments | « third_party/WebKit/Source/core/events/RelatedEvent.cpp ('k') | third_party/WebKit/Source/core/events/ScopedEventQueue.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698