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

Unified Diff: third_party/WebKit/Source/core/xmlhttprequest/XMLHttpRequestProgressEventThrottle.h

Issue 1853743005: Oilpan: Remove WillBe types (part 13) (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/xmlhttprequest/XMLHttpRequestProgressEventThrottle.h
diff --git a/third_party/WebKit/Source/core/xmlhttprequest/XMLHttpRequestProgressEventThrottle.h b/third_party/WebKit/Source/core/xmlhttprequest/XMLHttpRequestProgressEventThrottle.h
index 61269f2e582ed15f03c9b9b71d72592f47b4e73e..fbae73f3ee6c1a213bd19d8782ea29a615e94b3c 100644
--- a/third_party/WebKit/Source/core/xmlhttprequest/XMLHttpRequestProgressEventThrottle.h
+++ b/third_party/WebKit/Source/core/xmlhttprequest/XMLHttpRequestProgressEventThrottle.h
@@ -75,7 +75,7 @@ public:
void dispatchProgressEvent(const AtomicString&, bool lengthComputable, unsigned long long loaded, unsigned long long total);
// Dispatches the given event after operation about the "progress" event
// depending on the value of the ProgressEventAction argument.
- void dispatchReadyStateChangeEvent(PassRefPtrWillBeRawPtr<Event>, DeferredEventAction);
+ void dispatchReadyStateChangeEvent(RawPtr<Event>, DeferredEventAction);
void suspend();
void resume();
@@ -89,7 +89,7 @@ private:
// Dispatches a "progress" progress event and usually a readyStateChange
// event as well.
- void dispatchProgressProgressEvent(PassRefPtrWillBeRawPtr<Event>);
+ void dispatchProgressProgressEvent(RawPtr<Event>);
// The main purpose of this class is to throttle the "progress"
// ProgressEvent dispatching. This class represents such a deferred
@@ -100,7 +100,7 @@ private:
void set(bool lengthComputable, unsigned long long loaded, unsigned long long total);
void clear();
bool isSet() const { return m_isSet; }
- PassRefPtrWillBeRawPtr<Event> take();
+ RawPtr<Event> take();
private:
unsigned long long m_loaded;

Powered by Google App Engine
This is Rietveld 408576698