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

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

Issue 1229743005: Fix virtual/override/final usage in Source/core/{fetch,loader,streams,xmlhttprequest}/. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: rebase Created 5 years, 5 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: Source/core/xmlhttprequest/XMLHttpRequestProgressEventThrottle.h
diff --git a/Source/core/xmlhttprequest/XMLHttpRequestProgressEventThrottle.h b/Source/core/xmlhttprequest/XMLHttpRequestProgressEventThrottle.h
index 7124bc7414c40b30c5b013b58941275990acca04..fde13a8b67309b596b6df61067c94bf395710d4b 100644
--- a/Source/core/xmlhttprequest/XMLHttpRequestProgressEventThrottle.h
+++ b/Source/core/xmlhttprequest/XMLHttpRequestProgressEventThrottle.h
@@ -55,7 +55,7 @@ public:
{
return adoptPtrWillBeNoop(new XMLHttpRequestProgressEventThrottle(eventTarget));
}
- virtual ~XMLHttpRequestProgressEventThrottle();
+ ~XMLHttpRequestProgressEventThrottle() override;
enum DeferredEventAction {
Ignore,
@@ -92,7 +92,7 @@ private:
class DeferredEvent;
static const double minimumProgressEventDispatchingIntervalInSeconds;
- virtual void fired() override;
+ void fired() override;
void dispatchDeferredEvent();
// Non-Oilpan, keep a weak pointer to our XMLHttpRequest object as it is
« no previous file with comments | « Source/core/xmlhttprequest/XMLHttpRequestProgressEvent.h ('k') | Source/core/xmlhttprequest/XMLHttpRequestUpload.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698