Index: Source/core/xml/XMLHttpRequestProgressEventThrottle.h |
diff --git a/Source/core/xml/XMLHttpRequestProgressEventThrottle.h b/Source/core/xml/XMLHttpRequestProgressEventThrottle.h |
index 36f5e3a3855d6d915c5216dd2d7b7340276db843..06681ebd42157489ef6b239137872eee440b344d 100644 |
--- a/Source/core/xml/XMLHttpRequestProgressEventThrottle.h |
+++ b/Source/core/xml/XMLHttpRequestProgressEventThrottle.h |
@@ -45,7 +45,7 @@ enum ProgressEventAction { |
// This implements the XHR2 progress event dispatching: "dispatch a progress event called progress |
// about every 50ms or for every byte received, whichever is least frequent". |
-class XMLHttpRequestProgressEventThrottle : public TimerBase { |
+class XMLHttpRequestProgressEventThrottle FINAL : public TimerBase { |
public: |
explicit XMLHttpRequestProgressEventThrottle(EventTarget*); |
virtual ~XMLHttpRequestProgressEventThrottle(); |
@@ -61,7 +61,7 @@ public: |
private: |
static const double minimumProgressEventDispatchingIntervalInSeconds; |
- virtual void fired(); |
+ virtual void fired() OVERRIDE; |
void dispatchDeferredEvents(Timer<XMLHttpRequestProgressEventThrottle>*); |
bool flushDeferredProgressEvent(); |
void deliverProgressEvent(); |