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

Unified Diff: Source/core/loader/PingLoader.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
« no previous file with comments | « Source/core/loader/NavigationScheduler.cpp ('k') | Source/core/loader/PrerenderHandle.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/loader/PingLoader.h
diff --git a/Source/core/loader/PingLoader.h b/Source/core/loader/PingLoader.h
index aecd6af0ad346049e56de0cdbb790384408e42d0..fef62e47f90bb64bdba8152089122b230ca43cd4 100644
--- a/Source/core/loader/PingLoader.h
+++ b/Source/core/loader/PingLoader.h
@@ -62,7 +62,7 @@ class CORE_EXPORT PingLoader : public RefCountedWillBeRefCountedGarbageCollected
WTF_MAKE_NONCOPYABLE(PingLoader);
WTF_MAKE_FAST_ALLOCATED_WILL_BE_REMOVED(PingLoader);
public:
- virtual ~PingLoader();
+ ~PingLoader() override;
enum ViolationReportType {
ContentSecurityPolicyViolationReport,
@@ -83,10 +83,10 @@ protected:
void dispose();
private:
- virtual void didReceiveResponse(WebURLLoader*, const WebURLResponse&) override;
- virtual void didReceiveData(WebURLLoader*, const char*, int, int) override;
- virtual void didFinishLoading(WebURLLoader*, double, int64_t) override;
- virtual void didFail(WebURLLoader*, const WebURLError&) override;
+ void didReceiveResponse(WebURLLoader*, const WebURLResponse&) override;
+ void didReceiveData(WebURLLoader*, const char*, int, int) override;
+ void didFinishLoading(WebURLLoader*, double, int64_t) override;
+ void didFail(WebURLLoader*, const WebURLError&) override;
void timeout(Timer<PingLoader>*);
« no previous file with comments | « Source/core/loader/NavigationScheduler.cpp ('k') | Source/core/loader/PrerenderHandle.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698