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

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

Issue 637483002: Replace FINAL and OVERRIDE with their C++11 counterparts in Source/core/xml (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 6 years, 2 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
« no previous file with comments | « Source/core/xml/XMLHttpRequestProgressEvent.h ('k') | Source/core/xml/XMLHttpRequestUpload.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/xml/XMLHttpRequestProgressEventThrottle.h
diff --git a/Source/core/xml/XMLHttpRequestProgressEventThrottle.h b/Source/core/xml/XMLHttpRequestProgressEventThrottle.h
index e599b80ba907a7f2325afbec387abad73ff28c11..98114c12aa1faf852789d012743f9a622226d58a 100644
--- a/Source/core/xml/XMLHttpRequestProgressEventThrottle.h
+++ b/Source/core/xml/XMLHttpRequestProgressEventThrottle.h
@@ -51,7 +51,7 @@ class XMLHttpRequestProgressEvent;
// - "progress" event means an event named "progress"
// - ProgressEvent means an event using the ProgressEvent interface defined in
// the spec.
-class XMLHttpRequestProgressEventThrottle FINAL : public TimerBase {
+class XMLHttpRequestProgressEventThrottle final : public TimerBase {
DISALLOW_ALLOCATION();
public:
enum DeferredEventAction {
@@ -88,7 +88,7 @@ private:
class DeferredEvent;
static const double minimumProgressEventDispatchingIntervalInSeconds;
- virtual void fired() OVERRIDE;
+ virtual 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/xml/XMLHttpRequestProgressEvent.h ('k') | Source/core/xml/XMLHttpRequestUpload.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698