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

Unified Diff: Source/core/xmlhttprequest/XMLHttpRequestProgressEvent.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/XMLHttpRequestProgressEvent.h
diff --git a/Source/core/xmlhttprequest/XMLHttpRequestProgressEvent.h b/Source/core/xmlhttprequest/XMLHttpRequestProgressEvent.h
index c0b530dfb0557a122aa61c9637b4cd4d78e7ef55..7997b4fe476f75614fb97430bcc4f4c7219a838e 100644
--- a/Source/core/xmlhttprequest/XMLHttpRequestProgressEvent.h
+++ b/Source/core/xmlhttprequest/XMLHttpRequestProgressEvent.h
@@ -51,7 +51,7 @@ public:
unsigned long long position() const { return loaded(); }
unsigned long long totalSize() const { return total(); }
- virtual const AtomicString& interfaceName() const override { return EventNames::XMLHttpRequestProgressEvent; }
+ const AtomicString& interfaceName() const override { return EventNames::XMLHttpRequestProgressEvent; }
DEFINE_INLINE_VIRTUAL_TRACE() { ProgressEvent::trace(visitor); }
« no previous file with comments | « Source/core/xmlhttprequest/XMLHttpRequest.cpp ('k') | Source/core/xmlhttprequest/XMLHttpRequestProgressEventThrottle.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698